We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2184d6b commit 6a4fc07Copy full SHA for 6a4fc07
crates/flagd/src/resolver/in_process/resolver/file.rs
@@ -90,6 +90,7 @@ impl FileResolver {
90
if let Some(value) = value_converter(&json_value) {
91
return Ok(ResolutionDetails::new(value));
92
}
93
+ }
94
95
let query_result = self.store.get_flag(flag_key).await;
96
crates/flagd/src/resolver/rpc.rs
@@ -171,6 +171,7 @@ impl RpcResolver {
171
std::str::FromStr::from_str(&format!("http://{}", authority_str))?;
172
endpoint = endpoint.origin(authority_uri);
173
174
175
176
let channel = endpoint
177
.timeout(Duration::from_millis(options.deadline_ms as u64))
0 commit comments