Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

backoffice: ignore JWKS environment variable when connecting to prod #3044

Merged
merged 1 commit into from
Apr 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion server/polar_backoffice/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ class Tunnel(NamedTuple):

EnvVars: TypeAlias = dict[str, str]

IGNORED_ENVIRONMENT_VARIABLES = {
"POLAR_JWKS",
}


def _load_production_environment(
render_api_key: str, render_service_id: str
Expand Down Expand Up @@ -72,7 +76,8 @@ def _set_tunnels(environment_variables: EnvVars) -> tuple[EnvVars, list[Tunnel]]
def _set_environment_variables(environment_variables: EnvVars) -> None:
os.environ["POLAR_ENV"] = environment_variables["POLAR_ENV"]
for key, value in environment_variables.items():
os.environ[key] = value
if key not in IGNORED_ENVIRONMENT_VARIABLES:
os.environ[key] = value


def _get_ssh_hostname(render_api_key: str, render_service_id: str) -> str:
Expand Down
Loading