Skip to content

Commit

Permalink
Move sidecar address to 127.0.0.1 (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
Harrison Unruh authored Mar 20, 2024
1 parent 3fe3efd commit 93edde0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "replit.object_storage"
version = "0.0.2"
version = "0.0.3"
description = "A library for interacting with Object Storage on Replit"
authors = ["Repl.it <[email protected]>"]
license = "ISC"
Expand Down
2 changes: 1 addition & 1 deletion src/replit/object_storage/config.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""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"
Expand Down

0 comments on commit 93edde0

Please sign in to comment.