File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed
include/opentelemetry/exporters/jaeger Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -65,10 +65,7 @@ class JaegerExporter final : public opentelemetry::sdk::trace::SpanExporter
6565 * @param timeout an option timeout, default to max.
6666 */
6767 bool Shutdown (
68- std::chrono::microseconds timeout = std::chrono::microseconds::max()) noexcept override
69- {
70- return true ;
71- }
68+ std::chrono::microseconds timeout = std::chrono::microseconds::max()) noexcept override ;
7269
7370private:
7471 void InitializeEndpoint ();
Original file line number Diff line number Diff line change @@ -85,6 +85,12 @@ void JaegerExporter::InitializeEndpoint()
8585 assert (false );
8686}
8787
88+ bool JaegerExporter::Shutdown (std::chrono::microseconds timeout) noexcept
89+ {
90+ is_shutdown_ = true ;
91+ return true ;
92+ }
93+
8894} // namespace jaeger
8995} // namespace exporter
9096OPENTELEMETRY_END_NAMESPACE
You can’t perform that action at this time.
0 commit comments