devstack-cli 11.0.76__tar.gz → 11.0.78__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {devstack_cli-11.0.76/src/devstack_cli.egg-info → devstack_cli-11.0.78}/PKG-INFO +1 -1
- {devstack_cli-11.0.76 → devstack_cli-11.0.78}/pyproject.toml +1 -1
- {devstack_cli-11.0.76 → devstack_cli-11.0.78/src/devstack_cli.egg-info}/PKG-INFO +1 -1
- devstack_cli-11.0.78/src/version.py +9 -0
- devstack_cli-11.0.76/src/version.py +0 -9
- {devstack_cli-11.0.76 → devstack_cli-11.0.78}/LICENSE +0 -0
- {devstack_cli-11.0.76 → devstack_cli-11.0.78}/README.md +0 -0
- {devstack_cli-11.0.76 → devstack_cli-11.0.78}/setup.cfg +0 -0
- {devstack_cli-11.0.76 → devstack_cli-11.0.78}/src/__init__.py +0 -0
- {devstack_cli-11.0.76 → devstack_cli-11.0.78}/src/cli.py +1 -1
- {devstack_cli-11.0.76 → devstack_cli-11.0.78}/src/devstack_cli.egg-info/SOURCES.txt +0 -0
- {devstack_cli-11.0.76 → devstack_cli-11.0.78}/src/devstack_cli.egg-info/dependency_links.txt +0 -0
- {devstack_cli-11.0.76 → devstack_cli-11.0.78}/src/devstack_cli.egg-info/entry_points.txt +0 -0
- {devstack_cli-11.0.76 → devstack_cli-11.0.78}/src/devstack_cli.egg-info/requires.txt +0 -0
- {devstack_cli-11.0.76 → devstack_cli-11.0.78}/src/devstack_cli.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: devstack-cli
|
3
|
-
Version: 11.0.
|
3
|
+
Version: 11.0.78
|
4
4
|
Summary: Command-line access to Cloud Development Environments (CDEs) created by Cloudomation DevStack
|
5
5
|
Author-email: Stefan Mückstein <stefan@cloudomation.com>
|
6
6
|
Project-URL: Homepage, https://cloudomation.com/
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: devstack-cli
|
3
|
-
Version: 11.0.
|
3
|
+
Version: 11.0.78
|
4
4
|
Summary: Command-line access to Cloud Development Environments (CDEs) created by Cloudomation DevStack
|
5
5
|
Author-email: Stefan Mückstein <stefan@cloudomation.com>
|
6
6
|
Project-URL: Homepage, https://cloudomation.com/
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -976,13 +976,13 @@ class Cli:
|
|
976
976
|
async def _wait_running(self: 'Cli') -> None:
|
977
977
|
logger.info('Waiting for CDE "%s" to reach status running...', self.cde_name)
|
978
978
|
while True:
|
979
|
+
await asyncio.sleep(10)
|
979
980
|
await self._update_cde_list()
|
980
981
|
if self.cde['status'] == 'running':
|
981
982
|
break
|
982
983
|
if self.cde['status'].endswith('_failed') or self.cde['status'] in {'not configured', 'deleted', 'connected', 'stopped'}:
|
983
984
|
logger.error('CDE "%s" failed to reach status running and is now in status "%s".', self.cde_name, self.cde['status'])
|
984
985
|
return
|
985
|
-
await asyncio.sleep(10)
|
986
986
|
logger.info('CDE "%s" is now running', self.cde_name)
|
987
987
|
|
988
988
|
async def _connect_disconnect_cde(self: 'Cli') -> None:
|
File without changes
|
{devstack_cli-11.0.76 → devstack_cli-11.0.78}/src/devstack_cli.egg-info/dependency_links.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|