Skip to content

Commit

Permalink
fix typo in iocConnectionInfo comparision
Browse files Browse the repository at this point in the history
  • Loading branch information
tynanford committed Jun 14, 2024
1 parent d0089c2 commit a037027
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/recceiver/cfstore.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def _startServiceWithLock(self):
reqd_props.add(cf_prop_name)
# Standard property names for CA/PVA name server connections. These are
# environment variables from reccaster so take advantage of env_vars
if self.conf.get('iocConnectionInfo', 'default') == 'off':
if self.conf.get('iocConnectionInfo', 'default') != 'off':
self.env_vars["RSRV_SERVER_PORT"] = "caPort"
self.env_vars["PVAS_SERVER_PORT"] = "pvaPort"
reqd_props.add("caPort")
Expand Down

0 comments on commit a037027

Please sign in to comment.