0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-01 10:18:54 +02:00

Raise an appropriate error message if sentry_sdk missing

This commit is contained in:
Erik Johnston 2019-02-12 16:01:41 +00:00
parent ef2228c890
commit 6a8f902edb

View file

@ -13,7 +13,16 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from ._base import Config
from ._base import Config, ConfigError
MISSING_SENTRY = (
"""Missing sentry_sdk library. This is required for enable sentry.io
integration.
Install by running:
pip install sentry_sdk
"""
)
class MetricsConfig(Config):
@ -25,6 +34,11 @@ class MetricsConfig(Config):
self.sentry_enabled = "sentry" in config
if self.sentry_enabled:
try:
import sentry_sdk # noqa F401
except ImportError:
raise ConfigError(MISSING_SENTRY)
self.sentry_dsn = config["sentry"]["dsn"]
def default_config(self, report_stats=None, **kwargs):