Skip to content

Commit 5456729

Browse files
Nick ZimmermannNick Zimmermann
Nick Zimmermann
authored and
Nick Zimmermann
committed
feat: improve error handling
1 parent 7e5ced2 commit 5456729

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

providers/go-feature-flag/src/main/java/dev/openfeature/contrib/providers/gofeatureflag/bean/GoFeatureFlagResponse.java

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ public class GoFeatureFlagResponse {
1212
private String version;
1313
private String reason;
1414
private String errorCode;
15+
private String message;
1516
private Object value;
1617
private Boolean cacheable;
1718
private Map<String, Object> metadata;

providers/go-feature-flag/src/main/java/dev/openfeature/contrib/providers/gofeatureflag/controller/GoFeatureFlagController.java

+12-5
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
import dev.openfeature.sdk.Reason;
2828
import dev.openfeature.sdk.exceptions.FlagNotFoundError;
2929
import dev.openfeature.sdk.exceptions.GeneralError;
30+
import dev.openfeature.sdk.exceptions.InvalidContextError;
3031
import dev.openfeature.sdk.exceptions.OpenFeatureError;
3132
import dev.openfeature.sdk.exceptions.TypeMismatchError;
3233
import java.io.IOException;
@@ -156,17 +157,23 @@ public <T> EvaluationResponse<T> evaluateFlag(
156157
}
157158

158159
try (Response response = this.httpClient.newCall(reqBuilder.build()).execute()) {
159-
if (response.code() == HttpURLConnection.HTTP_UNAUTHORIZED) {
160-
throw new GeneralError("invalid token used to contact GO Feature Flag relay proxy instance");
161-
}
162-
if (response.code() >= HttpURLConnection.HTTP_BAD_REQUEST) {
163-
throw new GeneralError("impossible to contact GO Feature Flag relay proxy instance");
160+
if (response.code() == HttpURLConnection.HTTP_UNAUTHORIZED
161+
|| response.code() == HttpURLConnection.HTTP_FORBIDDEN) {
162+
throw new GeneralError("authentication/authorization error");
164163
}
165164

166165
ResponseBody responseBody = response.body();
167166
String body = responseBody != null ? responseBody.string() : "";
168167
GoFeatureFlagResponse goffResp = responseMapper.readValue(body, GoFeatureFlagResponse.class);
169168

169+
if (response.code() == HttpURLConnection.HTTP_BAD_REQUEST) {
170+
throw new InvalidContextError("Invalid context " + goffResp.getMessage());
171+
}
172+
173+
if (response.code() == HttpURLConnection.HTTP_INTERNAL_ERROR) {
174+
throw new GeneralError("Unknown error while retrieving flag " + goffResp.getMessage());
175+
}
176+
170177
if (Reason.DISABLED.name().equalsIgnoreCase(goffResp.getReason())) {
171178
// we don't set a variant since we are using the default value, and we are not able to
172179
// know

0 commit comments

Comments
 (0)