Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: improve error handling #1214

Merged
merged 18 commits into from
Mar 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
873e4f8
feat: improve error handling
Feb 12, 2025
1ba540e
chore: remove release as release-please-config.json
toddbaert Feb 12, 2025
c9852a0
chore(main): release dev.openfeature.contrib.providers.flagd 0.11.0 (…
github-actions[bot] Feb 12, 2025
63b82dd
fix: missing common lang dep (#1216)
toddbaert Feb 12, 2025
0451ee6
chore(main): release dev.openfeature.contrib.providers.flagd 0.11.1 (…
github-actions[bot] Feb 12, 2025
63b8d32
chore(flagd): Improve grpc logging (#1219)
chrfwow Feb 13, 2025
71c5e8b
fix: selector not being sent in sync call (#1220)
aepfli Feb 13, 2025
460d4f4
chore(main): release dev.openfeature.contrib.providers.flagd 0.11.2 (…
github-actions[bot] Feb 13, 2025
b938ffe
chore(deps): update providers/flagd/spec digest to 54952f3 (#1218)
renovate[bot] Feb 13, 2025
c591f0c
chore(deps): update providers/flagd/test-harness digest to ec1d75c (#…
renovate[bot] Feb 14, 2025
4914945
chore(deps): update dependency providers/flagd/test-harness to v2.2.0…
renovate[bot] Feb 14, 2025
503fbbc
fix tests
Feb 17, 2025
f231d24
Merge branch 'main' into feat/improve-error-handling
Nikzz3 Feb 17, 2025
f6882fa
Merge branch 'main' into feat/improve-error-handling
Nikzz3 Feb 19, 2025
3978422
Merge branch 'main' into feat/improve-error-handling
toddbaert Feb 28, 2025
3fe0ca6
Merge branch 'main' into feat/improve-error-handling
toddbaert Feb 28, 2025
0bff31d
Merge branch 'main' into feat/improve-error-handling
beeme1mr Mar 3, 2025
9eaa1d0
Merge branch 'main' into feat/improve-error-handling
Nikzz3 Mar 8, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ public class GoFeatureFlagResponse {
private String version;
private String reason;
private String errorCode;
private String message;
private Object value;
private Boolean cacheable;
private Map<String, Object> metadata;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
import dev.openfeature.sdk.Reason;
import dev.openfeature.sdk.exceptions.FlagNotFoundError;
import dev.openfeature.sdk.exceptions.GeneralError;
import dev.openfeature.sdk.exceptions.InvalidContextError;
import dev.openfeature.sdk.exceptions.OpenFeatureError;
import dev.openfeature.sdk.exceptions.TypeMismatchError;
import java.io.IOException;
Expand Down Expand Up @@ -156,17 +157,23 @@ public <T> EvaluationResponse<T> evaluateFlag(
}

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

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

if (response.code() == HttpURLConnection.HTTP_BAD_REQUEST) {
throw new InvalidContextError("Invalid context " + goffResp.getMessage());
}

if (response.code() == HttpURLConnection.HTTP_INTERNAL_ERROR) {
throw new GeneralError("Unknown error while retrieving flag " + goffResp.getMessage());
}

if (Reason.DISABLED.name().equalsIgnoreCase(goffResp.getReason())) {
// we don't set a variant since we are using the default value, and we are not able to
// know
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ void should_throw_an_error_if_endpoint_not_available() {
.value(false)
.reason(Reason.ERROR.name())
.errorCode(ErrorCode.GENERAL)
.errorMessage("impossible to contact GO Feature Flag relay proxy instance")
.errorMessage("unknown error while retrieving flag fail_500")
.build();
assertEquals(want, got);
}
Expand All @@ -259,7 +259,7 @@ void should_throw_an_error_if_invalid_api_key() {
.value(false)
.reason(Reason.ERROR.name())
.errorCode(ErrorCode.GENERAL)
.errorMessage("invalid token used to contact GO Feature Flag relay proxy instance")
.errorMessage("authentication/authorization error")
.build();
assertEquals(want, got);
}
Expand Down
Loading