Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • ghsc/geomag/geomag-algorithms
1 result
Show changes
Commits on Source (4)
...@@ -15,7 +15,7 @@ variables: ...@@ -15,7 +15,7 @@ variables:
CI_REGISTRY: ${CODE_REGISTRY} CI_REGISTRY: ${CODE_REGISTRY}
CI_REGISTRY_IMAGE: ${CODE_REGISTRY_IMAGE} CI_REGISTRY_IMAGE: ${CODE_REGISTRY_IMAGE}
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip" PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
TRIVY_VERSION: "0.11.0" TRIVY_VERSION: "0.13.0"
# docker variables # docker variables
DOCKER_DRIVER: overlay2 DOCKER_DRIVER: overlay2
FROM_IMAGE: ${CODE_REGISTRY}/devops/images/usgs/centos:7 FROM_IMAGE: ${CODE_REGISTRY}/devops/images/usgs/centos:7
......
...@@ -424,7 +424,7 @@ def get_output_factory(args): ...@@ -424,7 +424,7 @@ def get_output_factory(args):
elif output_type == "miniseed": elif output_type == "miniseed":
# TODO: deal with other miniseed arguments # TODO: deal with other miniseed arguments
locationcode = args.outlocationcode or args.locationcode or None locationcode = args.outlocationcode or args.locationcode or None
output_factory = edge.EdgeFactory( output_factory = edge.MiniSeedFactory(
host=args.output_host, host=args.output_host,
port=args.output_read_port, port=args.output_read_port,
write_port=args.output_port, write_port=args.output_port,
......
...@@ -48,7 +48,7 @@ class MiniSeedInputClient(object): ...@@ -48,7 +48,7 @@ class MiniSeedInputClient(object):
attempts += 1 attempts += 1
try: try:
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect(self.host, self.port) s.connect((self.host, self.port))
break break
except socket.error as e: except socket.error as e:
if attempts >= max_attempts: if attempts >= max_attempts:
...@@ -73,4 +73,4 @@ class MiniSeedInputClient(object): ...@@ -73,4 +73,4 @@ class MiniSeedInputClient(object):
buf = io.BytesIO() buf = io.BytesIO()
stream.write(buf, format="MSEED") stream.write(buf, format="MSEED")
# send data # send data
self.socket.sendall(buf) self.socket.sendall(buf.read())