Skip to content
Snippets Groups Projects
Commit 7cd5a739 authored by Wilbur, Spencer Franklin's avatar Wilbur, Spencer Franklin
Browse files

changed the port from 2061 to 22061 for data.py, MiniseedFactory.py and MiniseedInputCllient.py

parent 57a4e6e3
No related branches found
No related tags found
1 merge request!225changed the port from 2061 to 22061 for data.py, MiniseedFactory.py and MiniseedInputCllient.py
......@@ -36,7 +36,7 @@ def get_data_factory(
SamplingPeriod.DAY,
]:
factory = MiniSeedFactory(
host=host, port=int(os.getenv("DATA_MINISEED_PORT", "2061"))
host=host, port=int(os.getenv("DATA_MINISEED_PORT", "22061"))
)
elif sampling_period in [SamplingPeriod.SECOND, SamplingPeriod.MINUTE]:
factory = EdgeFactory(
......
......@@ -70,7 +70,7 @@ class MiniSeedFactory(TimeseriesFactory):
def __init__(
self,
host: str = "edgecwb.usgs.gov",
port: int = 2061,
port: int = 22061,
write_port: int = 7974,
observatory: Optional[str] = None,
channels: Optional[List[str]] = None,
......
......@@ -25,7 +25,7 @@ class MiniSeedInputClient(object):
Floating point precision for output data
"""
def __init__(self, host, port=2061, encoding="float32"):
def __init__(self, host, port=22061, encoding="float32"):
self.host = host
self.port = port
self.encoding = encoding
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment