We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1374184 commit 49de844Copy full SHA for 49de844
src/sagemaker/telemetry/telemetry_logging.py
@@ -230,9 +230,17 @@ def _construct_url(
230
) -> str:
231
"""Construct the URL for the telemetry request"""
232
233
+ # base_url = (
234
+ # f"https://sm-pysdk-t-{region}.s3.{region}.amazonaws.com/telemetry?"
235
+ # f"x-accountId={accountId}"
236
+ # f"&x-status={status}"
237
+ # f"&x-feature={feature}"
238
+ # )
239
+
240
+ # Change telemetry emitter to point to Molly's personal stack
241
base_url = (
- f"https://sm-pysdk-t-{region}.s3.{region}.amazonaws.com/telemetry?"
- f"x-accountId={accountId}"
242
+ f"https://sm-pysdk-t-personal-mollyhe-pia.s3.us-west-2.amazonaws.com/telemetry?"
243
+ f"x-accountId=879381237580"
244
f"&x-status={status}"
245
f"&x-feature={feature}"
246
)
0 commit comments