From 057b0fd2432f1c71160af19db6993d6947ae3773 Mon Sep 17 00:00:00 2001 From: "E. Joshua Rigler" <erigler@usgs.gov> Date: Wed, 19 Feb 2020 11:07:11 -0700 Subject: [PATCH] Fix minor error in Controller.py Updated command line argument for output factory --- geomagio/Controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geomagio/Controller.py b/geomagio/Controller.py index 6b95ff5e..ee646dea 100644 --- a/geomagio/Controller.py +++ b/geomagio/Controller.py @@ -408,7 +408,7 @@ def get_output_factory(args): locationcode = args.outlocationcode or args.locationcode or None output_factory = edge.EdgeFactory( host=args.output_host, - port=args.output_edge_read_port, + port=args.output_read_port, write_port=args.output_port, locationCode=locationcode, tag=args.output_edge_tag, -- GitLab