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
This should not occur because the ConfigProvider should be something that knows how to load a given configuration but should not actually do so until requested to by a ZIO application. The current behavior makes it impossible to recover from these types of errors using operators such as ConfigProvider#orElse or even for the ZIO runtime to properly manage them since they occur when the ConfigProvider is defined.
Note that ConfigProvider.fromHoconFile already handles this properly.
The text was updated successfully, but these errors were encountered:
The following application will throw an exception:
This should not occur because the
ConfigProvider
should be something that knows how to load a given configuration but should not actually do so until requested to by a ZIO application. The current behavior makes it impossible to recover from these types of errors using operators such asConfigProvider#orElse
or even for the ZIO runtime to properly manage them since they occur when theConfigProvider
is defined.Note that
ConfigProvider.fromHoconFile
already handles this properly.The text was updated successfully, but these errors were encountered: