Replace magic number by HttpStatus
See gh-15130
This commit is contained in:
committed by
Stephane Nicoll
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
|
||||
|
||||
Reference in New Issue
Block a user