This repository was archived by the owner on Jan 23, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
packages/jumpstarter/jumpstarter Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77
88from jumpstarter .client import client_from_path
99from jumpstarter .config .client import _allow_from_env
10- from jumpstarter .config .env import JMP_DRIVERS_ALLOW , JMP_USE_ALTERNATIVE_ENDPOINTS , JUMPSTARTER_HOST
10+ from jumpstarter .config .env import JMP_DRIVERS_ALLOW , JMP_USE_ALT_ENDPOINTS , JUMPSTARTER_HOST
1111from jumpstarter .driver import Driver
1212from jumpstarter .exporter import Session
1313
@@ -52,7 +52,7 @@ async def env_async(portal, stack):
5252
5353 allow , unsafe = _allow_from_env ()
5454
55- use_alternative_endpoints = os .environ .get (JMP_USE_ALTERNATIVE_ENDPOINTS , "0" ) == "1"
55+ use_alternative_endpoints = os .environ .get (JMP_USE_ALT_ENDPOINTS , "0" ) == "1"
5656
5757 async with client_from_path (
5858 host ,
@@ -119,7 +119,7 @@ def launch_shell(
119119 | {
120120 JUMPSTARTER_HOST : host ,
121121 JMP_DRIVERS_ALLOW : "UNSAFE" if unsafe else "," .join (allow ),
122- JMP_USE_ALTERNATIVE_ENDPOINTS : "1" if use_alternative_endpoints else "0" ,
122+ JMP_USE_ALT_ENDPOINTS : "1" if use_alternative_endpoints else "0" ,
123123 "PS1" : f"{ ANSI_GRAY } { PROMPT_CWD } { ANSI_YELLOW } ⚡{ ANSI_WHITE } { context } { ANSI_YELLOW } ➤{ ANSI_RESET } " ,
124124 },
125125 )
Original file line number Diff line number Diff line change 77JMP_DRIVERS_ALLOW = "JMP_DRIVERS_ALLOW"
88JUMPSTARTER_HOST = "JUMPSTARTER_HOST"
99JMP_LEASE = "JMP_LEASE"
10- JMP_USE_ALTERNATIVE_ENDPOINTS = "JMP_USE_ALTERNATIVE_ENDPOINTS "
10+ JMP_USE_ALT_ENDPOINTS = "JMP_USE_ALT_ENDPOINTS "
You can’t perform that action at this time.
0 commit comments