Skip to content

Commit

Permalink
Simplify SubsystemDBReplicationCLI name
Browse files Browse the repository at this point in the history
  • Loading branch information
edewata committed Dec 4, 2023
1 parent 49d8fca commit 9de2d9c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion base/server/python/pki/server/subsystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -1251,7 +1251,7 @@ def setup_replication(
master_config_file = os.path.join(tmpdir, 'master.conf')
pki.util.store_properties(master_config_file, master_config)

cmd = [self.name + '-db-replication-setup']
cmd = [self.name + '-db-repl-setup']

if master_replication_port:
cmd.extend(['--master-replication-port', master_replication_port])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
public class SubsystemDBReplicationCLI extends CLI {

public SubsystemDBReplicationCLI(CLI parent) {
super("replication", parent.parent.name.toUpperCase() + " database replication management commands", parent);
super("repl", parent.parent.name.toUpperCase() + " database replication management commands", parent);

addModule(new SubsystemDBReplicationSetupCLI(this));
}
Expand Down

0 comments on commit 9de2d9c

Please sign in to comment.