parent
9483c91d58
commit
ffdc9f0ff3
|
|
@ -21,6 +21,7 @@ import java.util.List;
|
|||
import java.util.Map;
|
||||
|
||||
import org.springframework.boot.actuate.trace.http.TraceableResponse;
|
||||
import org.springframework.http.HttpStatus;
|
||||
import org.springframework.http.server.reactive.ServerHttpResponse;
|
||||
|
||||
/**
|
||||
|
|
@ -39,7 +40,7 @@ class TraceableServerHttpResponse implements TraceableResponse {
|
|||
@Override
|
||||
public int getStatus() {
|
||||
return (this.response.getStatusCode() != null)
|
||||
? this.response.getStatusCode().value() : 200;
|
||||
? this.response.getStatusCode().value() : HttpStatus.OK.value();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Reference in New Issue