Compare commits
2 Commits
v0.9.96
...
4c6aabec6a
Author | SHA1 | Date | |
---|---|---|---|
4c6aabec6a | |||
559400ed90 |
@ -892,6 +892,7 @@ def cli_node_ready(
|
|||||||
"--lines",
|
"--lines",
|
||||||
"lines",
|
"lines",
|
||||||
default=None,
|
default=None,
|
||||||
|
type=int,
|
||||||
show_default=False,
|
show_default=False,
|
||||||
help="Display this many log lines from the end of the log buffer. [default: 1000; with follow: 10]",
|
help="Display this many log lines from the end of the log buffer. [default: 1000; with follow: 10]",
|
||||||
)
|
)
|
||||||
@ -2516,6 +2517,7 @@ def cli_vm_volume_remove(domain, volume, live_flag, restart_flag):
|
|||||||
"--lines",
|
"--lines",
|
||||||
"lines",
|
"lines",
|
||||||
default=None,
|
default=None,
|
||||||
|
type=int,
|
||||||
show_default=False,
|
show_default=False,
|
||||||
help="Display this many log lines from the end of the log buffer. [default: 1000; with follow: 10]",
|
help="Display this many log lines from the end of the log buffer. [default: 1000; with follow: 10]",
|
||||||
)
|
)
|
||||||
|
@ -521,7 +521,7 @@ class NodeInstance(object):
|
|||||||
self.logger.out("Acquired write lock for synchronization phase F", state="o")
|
self.logger.out("Acquired write lock for synchronization phase F", state="o")
|
||||||
time.sleep(0.2) # Time fir reader to acquire the lock
|
time.sleep(0.2) # Time fir reader to acquire the lock
|
||||||
# 4. Add gateway IPs
|
# 4. Add gateway IPs
|
||||||
for network in self.d_network:
|
for network in self.d_network.copy():
|
||||||
self.d_network[network].createGateways()
|
self.d_network[network].createGateways()
|
||||||
self.logger.out("Releasing write lock for synchronization phase F", state="i")
|
self.logger.out("Releasing write lock for synchronization phase F", state="i")
|
||||||
self.zkhandler.write([("base.config.primary_node.sync_lock", "")])
|
self.zkhandler.write([("base.config.primary_node.sync_lock", "")])
|
||||||
|
Reference in New Issue
Block a user