We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fe3efd commit 93edde0Copy full SHA for 93edde0
2 files changed
pyproject.toml
@@ -1,6 +1,6 @@
1
[tool.poetry]
2
name = "replit.object_storage"
3
-version = "0.0.2"
+version = "0.0.3"
4
description = "A library for interacting with Object Storage on Replit"
5
authors = ["Repl.it <contact@repl.it>"]
6
license = "ISC"
src/replit/object_storage/config.py
"""Configurations for external interactions managed by the library."""
-REPLIT_SIDECAR_ENDPOINT = "http://0.0.0.0:1106"
+REPLIT_SIDECAR_ENDPOINT = "http://127.0.0.1:1106"
REPLIT_CREDENTIAL_URL = REPLIT_SIDECAR_ENDPOINT + "/credential"
REPLIT_DEFAULT_BUCKET_URL = REPLIT_SIDECAR_ENDPOINT + "/object-storage/default-bucket"
REPLIT_TOKEN_URL = REPLIT_SIDECAR_ENDPOINT + "/token"
0 commit comments