Skip to content

Commit b995a03

Browse files
bug(ssi): update trace url (#3908)
1 parent 6d87a66 commit b995a03

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

utils/onboarding/backend_interface.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def _headers():
2323

2424

2525
def _query_for_trace_id(trace_id, validator=None):
26-
url = f"{API_HOST}/api/v1/trace/{trace_id}"
26+
url = f"{API_HOST}/api/ui/trace/{trace_id}"
2727

2828
trace_data = _make_request(url, headers=_headers())
2929
if validator:
@@ -52,7 +52,7 @@ def _make_request(
5252
request_timeout=10,
5353
retry_delay=1,
5454
backoff_factor=2,
55-
max_retries=8,
55+
max_retries=30,
5656
validator=None,
5757
):
5858
"""Make a request to the backend with retries and backoff. With the defaults, this will retry for approximately 5 minutes."""

0 commit comments

Comments
 (0)