We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f3fbf8 commit d28a265Copy full SHA for d28a265
src/sagemaker/telemetry/telemetry_logging.py
@@ -221,9 +221,17 @@ def _construct_url(
221
) -> str:
222
"""Construct the URL for the telemetry request"""
223
224
+ # base_url = (
225
+ # f"https://sm-pysdk-t-{region}.s3.{region}.amazonaws.com/telemetry?"
226
+ # f"x-accountId={accountId}"
227
+ # f"&x-status={status}"
228
+ # f"&x-feature={feature}"
229
+ # )
230
+
231
+ # Change telemetry emitter to point to Molly's personal stack
232
base_url = (
- f"https://sm-pysdk-t-{region}.s3.{region}.amazonaws.com/telemetry?"
- f"x-accountId={accountId}"
233
+ f"https://sm-pysdk-t-personal-mollyhe-pia.s3.us-west-2.amazonaws.com/telemetry?"
234
+ f"x-accountId=879381237580"
235
f"&x-status={status}"
236
f"&x-feature={feature}"
237
)
0 commit comments