Changes:
- changed "sourcemaps" env var to "sourcemaps_reader" - set "sourcemaps_reader" env var value
This commit is contained in:
parent
2f5fcf0ae7
commit
3ef19aa171
2 changed files with 2 additions and 1 deletions
|
|
@ -31,6 +31,7 @@
|
|||
"sessions_bucket": "mobs",
|
||||
"sessions_region": "us-east-1",
|
||||
"put_S3_TTL": "20",
|
||||
"sourcemaps_reader": "http://127.0.0.1:3000/staging",
|
||||
"sourcemaps_bucket": "sourcemaps",
|
||||
"sourcemaps_bucket_key": "",
|
||||
"sourcemaps_bucket_secret": "",
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ def get_original_trace(key, positions):
|
|||
"aws_region": environ["sourcemaps_bucket_region"]
|
||||
}
|
||||
}
|
||||
r = requests.post(environ["sourcemaps"], json=payload)
|
||||
r = requests.post(environ["sourcemaps_reader"], json=payload)
|
||||
if r.status_code != 200:
|
||||
return {}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue