You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: allow passing http timeout to rust engine for polling (#825)
* feat: allow passing http timeout to rust engine for polling
Signed-off-by: Mark Phelps <[email protected]>
* chore: add to Go readme
Signed-off-by: Mark Phelps <[email protected]>
* chore: only install wasm-opt/pack if not installed in action
Signed-off-by: Mark Phelps <[email protected]>
* chore: try to fix wasm-pack command
Signed-off-by: Mark Phelps <[email protected]>
* chore: set version in gradle wrapper
Signed-off-by: Mark Phelps <[email protected]>
* chore: force install of latest wasm tools
Signed-off-by: Mark Phelps <[email protected]>
* chore: disable gradle cache for now
Signed-off-by: Mark Phelps <[email protected]>
* chore: idk what changed with wasm-pack
Signed-off-by: Mark Phelps <[email protected]>
---------
Signed-off-by: Mark Phelps <[email protected]>
Copy file name to clipboardExpand all lines: flipt-client-go/README.md
+1
Original file line number
Diff line number
Diff line change
@@ -100,6 +100,7 @@ The `NewClient` constructor accepts a variadic number of `ClientOption` function
100
100
101
101
-`WithNamespace`: The namespace to fetch flag state from. If not provided, the client will default to the `default` namespace.
102
102
-`WithURL`: The URL of the upstream Flipt instance. If not provided, the client will default to `http://localhost:8080`.
103
+
-`WithRequestTimeout`: The timeout (in seconds) for total request time to the upstream Flipt instance. If not provided, the client will default to no timeout. Note: this only affects polling mode. Streaming mode will have no timeout set.
103
104
-`WithUpdateInterval`: The interval (in seconds) in which to fetch new flag state. If not provided, the client will default to 120 seconds.
104
105
-`With{Method}Authentication`: The authentication strategy to use when communicating with the upstream Flipt instance. If not provided, the client will default to no authentication. See the [Authentication](#authentication) section for more information.
105
106
-`WithReference`: The [reference](https://docs.flipt.io/guides/user/using-references) to use when fetching flag state. If not provided, reference will not be used.
0 commit comments