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
Currently the service builder is silent about certain errors (i.e. by only logging a warning instead of failing to start). An example of that is attempting to start a service with a duplicate provider (e.g. using two instances of the MbedCryptoProvider). Ideally, if anything that is specified in config.toml can't be spun up exactly the way it is defined, the service should error out.
This issue is meant to cover three things:
identifying where errors can happen during service building
making sure that all those errors lead to the service stopping
implementing a few config tests to make sure the above is implemented properly
The text was updated successfully, but these errors were encountered:
Currently the service builder is silent about certain errors (i.e. by only logging a warning instead of failing to start). An example of that is attempting to start a service with a duplicate provider (e.g. using two instances of the
MbedCryptoProvider
). Ideally, if anything that is specified inconfig.toml
can't be spun up exactly the way it is defined, the service should error out.This issue is meant to cover three things:
The text was updated successfully, but these errors were encountered: