Skip to content

Commit 650a0d1

Browse files
authored
feat: use Sumo-core in Radix c3 for non-prod envs (#249)
1 parent 78c73ad commit 650a0d1

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/sumo/wrapper/sumo_client.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,9 @@ def __init__(
118118
elif env == "localhost":
119119
self.base_url = "http://localhost:8084/api/v1"
120120
else:
121-
self.base_url = f"https://main-sumo-{env}.radix.equinor.com/api/v1"
121+
self.base_url = (
122+
f"https://main-sumo-core-{env}.c3.radix.equinor.com/api/v1"
123+
)
122124
return
123125

124126
def __enter__(self):

0 commit comments

Comments
 (0)