-
Notifications
You must be signed in to change notification settings - Fork 49
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: Go feature flag provider #106
feat: Go feature flag provider #106
Conversation
Signed-off-by: Thomas Poignant <[email protected]>
The stage |
I was just about to make a comment about this. I will fix this in another PR and you can rebase on it. It will take only a moment. |
#107 after this is merged you can rebase if you want. Sorry about that! |
providers/go-feature-flag/src/main/java/org/gofeatureflag/provider/GoFeatureFlagProvider.java
Outdated
Show resolved
Hide resolved
providers/go-feature-flag/src/main/java/org/gofeatureflag/provider/bean/GoFeatureFlagUser.java
Outdated
Show resolved
Hide resolved
providers/go-feature-flag/src/main/java/org/gofeatureflag/provider/bean/GoFeatureFlagUser.java
Outdated
Show resolved
Hide resolved
providers/go-feature-flag/src/main/java/org/gofeatureflag/provider/GoFeatureFlagProvider.java
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I left a few minor comments for you to think about, but this all looks pretty good to me!
You will need to add this to the main pom.xml's modules
element though, it's not currently actually building:
[INFO] Reactor Summary:
[INFO]
[INFO] java-sdk-contrib 0.0.2 ............................. SUCCESS [ 4.806 s]
[INFO] open-telemetry-hook 0.2.8 .......................... SUCCESS [ 14.724 s]
[INFO] flagd 0.3.2 ........................................ SUCCESS [ 25.281 s]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
Lines 29 to 32 in bc8e3ce
<modules> | |
<module>hooks/open-telemetry</module> | |
<module>providers/flagd</module> | |
</modules> |
Signed-off-by: Thomas Poignant <[email protected]>
Signed-off-by: Thomas Poignant <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Very nice!
@thomaspoignant dependency is available now! Everything looks good to me except a few lint issues. |
Signed-off-by: Thomas Poignant <[email protected]>
b5d4171
to
50c5225
Compare
Signed-off-by: Thomas Poignant <[email protected]>
13d3ef1
to
b592aa0
Compare
Signed-off-by: Thomas Poignant <[email protected]>
b592aa0
to
6db011c
Compare
Signed-off-by: Thomas Poignant <[email protected]>
@toddbaert I've finally finished making Can you have a last check? It is ready to merge on my side. |
First version of the
provider
for GO Feature Flag.