add five test users, rename peopleops users, delete two

This commit is contained in:
burnettk 2023-02-12 13:35:09 -05:00
parent 29dd65b5ad
commit 388fcfb42a
4 changed files with 489 additions and 352 deletions

View File

@ -9,6 +9,7 @@ jason@sartography.com
jon@sartography.com
kb@sartography.com
kevin@sartography.com
madhurya@sartography.com
madhurya@sartography.com,160
madhurya@ymail.com,161
mike@sartography.com
natalia@sartography.com

View File

@ -30,13 +30,11 @@ legal.sme1@status.im,1345
legal.sme@status.im,1253
legal1.sme@status.im
manuchehr@status.im,110
peopleops.partner.program-lead@status.im,146
peopleops.partner.project-lead@status.im,147
peopleops.program-lead@status.im,146
peopleops.project-lead@status.im,147
peopleops.partner.sme@status.im,148
peopleops.partner1.sme@status.im,149
peopleops.partner@status.im,150
peopleops.talent.program-lead@status.im
peopleops.talent.project-lead@status.im
peopleops.talent.sme@status.im
peopleops.talent1.sme@status.im
peopleops.talent@status.im,141

View File

@ -1,7 +1,6 @@
"""__init__."""
import faulthandler
import os
import sys
from typing import Any
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")
# 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(
dsn=app.config.get("SENTRY_DSN"),