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
Following seem to treat as seconds which should be treated as a bug. https://github.com/open-telemetry/opentelemetry-rust/blob/main/opentelemetry-otlp/src/exporter/mod.rs#L90 https://github.com/open-telemetry/opentelemetry-rust/blob/main/opentelemetry-otlp/src/exporter/tonic/mod.rs#L203
Other places are interpreting it correctly as milliseconds.
The text was updated successfully, but these errors were encountered:
Here also should be interpreted as milliseconds, right?
opentelemetry-rust/opentelemetry-otlp/src/exporter/http/mod.rs
Line 123 in b358202
Sorry, something went wrong.
Here also should be interpreted as milliseconds, right? opentelemetry-rust/opentelemetry-otlp/src/exporter/http/mod.rs Line 123 in b358202 Ok(seconds) => Duration::from_secs(seconds),
Ok(seconds) => Duration::from_secs(seconds),
yes!
I would be happy to work on this
Thanks @mohammadVatandoost ! Assigned to you!
mohammadVatandoost
Successfully merging a pull request may close this issue.
Following seem to treat as seconds which should be treated as a bug.
https://github.com/open-telemetry/opentelemetry-rust/blob/main/opentelemetry-otlp/src/exporter/mod.rs#L90
https://github.com/open-telemetry/opentelemetry-rust/blob/main/opentelemetry-otlp/src/exporter/tonic/mod.rs#L203
Other places are interpreting it correctly as milliseconds.
The text was updated successfully, but these errors were encountered: