Skip to content

Commit 93edde0

Browse files
author
Harrison Unruh
authored
Move sidecar address to 127.0.0.1 (#4)
1 parent 3fe3efd commit 93edde0

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "replit.object_storage"
3-
version = "0.0.2"
3+
version = "0.0.3"
44
description = "A library for interacting with Object Storage on Replit"
55
authors = ["Repl.it <contact@repl.it>"]
66
license = "ISC"

src/replit/object_storage/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Configurations for external interactions managed by the library."""
22

3-
REPLIT_SIDECAR_ENDPOINT = "http://0.0.0.0:1106"
3+
REPLIT_SIDECAR_ENDPOINT = "http://127.0.0.1:1106"
44
REPLIT_CREDENTIAL_URL = REPLIT_SIDECAR_ENDPOINT + "/credential"
55
REPLIT_DEFAULT_BUCKET_URL = REPLIT_SIDECAR_ENDPOINT + "/object-storage/default-bucket"
66
REPLIT_TOKEN_URL = REPLIT_SIDECAR_ENDPOINT + "/token"

0 commit comments

Comments
 (0)