Skip to content

Commit

Permalink
Utilize distinct command line arguments.
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Indenbaum <[email protected]>
  • Loading branch information
Alexander Indenbaum committed Nov 21, 2023
1 parent ac925fa commit 64b614d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion control/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def _start_monitor_client(self):
self.logger.info("CEPH monitor client is disabled")
return
monitor_client = '/usr/local/bin/ceph-nvmeof'
cmd = [monitor_client, "---name", self.name, "---gateway-address", self._gateway_address()]
cmd = [monitor_client, "--gateway-name", self.name, "--gateway-address", self._gateway_address()]
self.logger.info(f"Starting {' '.join(cmd)}")
try:
# start monitor client process
Expand Down

0 comments on commit 64b614d

Please sign in to comment.