We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bc8845 commit 5dfe03eCopy full SHA for 5dfe03e
1 file changed
src/microlog/config.py
@@ -101,7 +101,7 @@
101
]
102
103
HOST = "0.0.0.0"
104
-PORT = 7777
+PORT = 8564
105
106
class LocalFileSystem:
107
"""A simple local filesystem interface to mimic s3fs methods used in microlog."""
@@ -156,7 +156,7 @@ def rm(self, path: str) -> None:
156
except Exception as e: # pylint: disable=broad-except
157
import sys
158
S3_ROOT = os.path.expanduser("~/microlog")
159
- SERVER = "http://localhost:7777/"
+ SERVER = f"http://localhost:{PORT}/"
160
fs = local_fs
161
162
fs.makedir(S3_ROOT, exist_ok=True)
0 commit comments