add five test users, rename peopleops users, delete two
This commit is contained in:
parent
29dd65b5ad
commit
388fcfb42a
File diff suppressed because it is too large
Load Diff
|
@ -9,6 +9,7 @@ jason@sartography.com
|
||||||
jon@sartography.com
|
jon@sartography.com
|
||||||
kb@sartography.com
|
kb@sartography.com
|
||||||
kevin@sartography.com
|
kevin@sartography.com
|
||||||
madhurya@sartography.com
|
madhurya@sartography.com,160
|
||||||
|
madhurya@ymail.com,161
|
||||||
mike@sartography.com
|
mike@sartography.com
|
||||||
natalia@sartography.com
|
natalia@sartography.com
|
||||||
|
|
|
@ -30,13 +30,11 @@ legal.sme1@status.im,1345
|
||||||
legal.sme@status.im,1253
|
legal.sme@status.im,1253
|
||||||
legal1.sme@status.im
|
legal1.sme@status.im
|
||||||
manuchehr@status.im,110
|
manuchehr@status.im,110
|
||||||
peopleops.partner.program-lead@status.im,146
|
peopleops.program-lead@status.im,146
|
||||||
peopleops.partner.project-lead@status.im,147
|
peopleops.project-lead@status.im,147
|
||||||
peopleops.partner.sme@status.im,148
|
peopleops.partner.sme@status.im,148
|
||||||
peopleops.partner1.sme@status.im,149
|
peopleops.partner1.sme@status.im,149
|
||||||
peopleops.partner@status.im,150
|
peopleops.partner@status.im,150
|
||||||
peopleops.talent.program-lead@status.im
|
|
||||||
peopleops.talent.project-lead@status.im
|
|
||||||
peopleops.talent.sme@status.im
|
peopleops.talent.sme@status.im
|
||||||
peopleops.talent1.sme@status.im
|
peopleops.talent1.sme@status.im
|
||||||
peopleops.talent@status.im,141
|
peopleops.talent@status.im,141
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
"""__init__."""
|
"""__init__."""
|
||||||
import faulthandler
|
import faulthandler
|
||||||
import os
|
import os
|
||||||
import sys
|
|
||||||
from typing import Any
|
from typing import Any
|
||||||
|
|
||||||
import connexion # type: ignore
|
import connexion # type: ignore
|
||||||
|
@ -208,7 +207,8 @@ def configure_sentry(app: flask.app.Flask) -> None:
|
||||||
raise Exception("SENTRY_TRACES_SAMPLE_RATE is not set somehow")
|
raise Exception("SENTRY_TRACES_SAMPLE_RATE is not set somehow")
|
||||||
|
|
||||||
# profiling doesn't work on windows, because of an issue like https://github.com/nvdv/vprof/issues/62
|
# profiling doesn't work on windows, because of an issue like https://github.com/nvdv/vprof/issues/62
|
||||||
profiles_sample_rate = 0 if sys.platform.startswith("win") else 1
|
# but also we commented out profiling because it was causing segfaults (i guess it is marked experimental)
|
||||||
|
# profiles_sample_rate = 0 if sys.platform.startswith("win") else 1
|
||||||
|
|
||||||
sentry_sdk.init(
|
sentry_sdk.init(
|
||||||
dsn=app.config.get("SENTRY_DSN"),
|
dsn=app.config.get("SENTRY_DSN"),
|
||||||
|
|
Loading…
Reference in New Issue