We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 42bceed + ecab43b commit 2a5ff3fCopy full SHA for 2a5ff3f
netfoundry/ctl.py
@@ -799,13 +799,11 @@ def demo(cli):
799
else:
800
cli.log.debug(f"creating network named '{network_name}'")
801
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
804
network_created = network_group.create_network(
805
name=network_name,
806
size=cli.config.demo.size,
807
version=cli.config.demo.product_version,
808
- wait=cli.config.general.wait)
+ wait=0) # FIXME: don't use wait > 0 until process-executions beta is launched, until then poll for status
809
network, network_group = use_network(
810
organization=organization,
811
group=cli.config.general.network_group,
0 commit comments