Skip to content

Commit ecab43b

Browse files
committed
fix create network wait
1 parent b0cf16c commit ecab43b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

netfoundry/ctl.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -799,13 +799,11 @@ def demo(cli):
799799
else:
800800
cli.log.debug(f"creating network named '{network_name}'")
801801
spinner.text = f"Creating network '{network_name}'"
802-
# FIXME: don't use wait > 0 until process-executions beta is launched, until then poll for status
803-
cli.config.general['wait'] = 0
804802
network_created = network_group.create_network(
805803
name=network_name,
806804
size=cli.config.demo.size,
807805
version=cli.config.demo.product_version,
808-
wait=cli.config.general.wait)
806+
wait=0) # FIXME: don't use wait > 0 until process-executions beta is launched, until then poll for status
809807
network, network_group = use_network(
810808
organization=organization,
811809
group=cli.config.general.network_group,

0 commit comments

Comments
 (0)