We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Configuration
Now the options for the object store's http client are set like this:
let connect_timeout = env::var("_GREPTIMEDB_HTTP_CONNECT_TIMEOUT") .ok() .and_then(|v| v.parse::<u64>().ok()) .unwrap_or(30); builder = builder.connect_timeout(Duration::from_secs(connect_timeout));
It's better to make them set from the config file instead, like this:
[[storage.providers]] name = "S3" type = "S3" timeout = "30s" # ...
No response
The text was updated successfully, but these errors were encountered:
As we introduced settings for http clients in #5041, we can close this?
Sorry, something went wrong.
@MichaelScofield Maybe we can remove the env options in the next release.
@CookiePieWw We can keep this open to remind us to remove them.
No branches or pull requests
What type of enhancement is this?
Configuration
What does the enhancement do?
Now the options for the object store's http client are set like this:
It's better to make them set from the config file instead, like this:
Implementation challenges
No response
The text was updated successfully, but these errors were encountered: