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
Autoconfigure can fail and throw ConfigurationException after having setup various components. For example:
SdkMeterProvider can be initialized followed by a failure to initialize SdkTracerProvider (code)
An exporter can be initialized followed by a failure initializing the processor (or periodic metric reader) that it is associated with (code)
In cases like this, resources like thread pools are started and never closed.
Autoconfigure should have a mechanism to cleanup its partially configured Closeable components when exceptions occur which short circuit full configuration.
The text was updated successfully, but these errors were encountered:
Autoconfigure can fail and throw
ConfigurationException
after having setup various components. For example:In cases like this, resources like thread pools are started and never closed.
Autoconfigure should have a mechanism to cleanup its partially configured
Closeable
components when exceptions occur which short circuit full configuration.The text was updated successfully, but these errors were encountered: