Skip to content

Commit 5dfe03e

Browse files
authored
Change server port from 7777 to 8564
1 parent 7bc8845 commit 5dfe03e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/microlog/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
]
102102

103103
HOST = "0.0.0.0"
104-
PORT = 7777
104+
PORT = 8564
105105

106106
class LocalFileSystem:
107107
"""A simple local filesystem interface to mimic s3fs methods used in microlog."""
@@ -156,7 +156,7 @@ def rm(self, path: str) -> None:
156156
except Exception as e: # pylint: disable=broad-except
157157
import sys
158158
S3_ROOT = os.path.expanduser("~/microlog")
159-
SERVER = "http://localhost:7777/"
159+
SERVER = f"http://localhost:{PORT}/"
160160
fs = local_fs
161161

162162
fs.makedir(S3_ROOT, exist_ok=True)

0 commit comments

Comments
 (0)