gnetcli-adapter 2.4.0__tar.gz → 2.4.1__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.
- {gnetcli_adapter-2.4.0 → gnetcli_adapter-2.4.1}/PKG-INFO +1 -1
- {gnetcli_adapter-2.4.0 → gnetcli_adapter-2.4.1}/src/gnetcli_adapter/gnetcli_adapter.py +1 -1
- {gnetcli_adapter-2.4.0 → gnetcli_adapter-2.4.1}/LICENSE +0 -0
- {gnetcli_adapter-2.4.0 → gnetcli_adapter-2.4.1}/README.md +0 -0
- {gnetcli_adapter-2.4.0 → gnetcli_adapter-2.4.1}/pyproject.toml +0 -0
- {gnetcli_adapter-2.4.0 → gnetcli_adapter-2.4.1}/src/gnetcli_adapter/__init__.py +0 -0
- {gnetcli_adapter-2.4.0 → gnetcli_adapter-2.4.1}/src/gnetcli_adapter/progress_tracker.py +0 -0
|
@@ -402,7 +402,7 @@ class GnetcliDeployer(DeployDriver, AdapterWithConfig, AdapterWithName):
|
|
|
402
402
|
deploy_items = deploy_cmds.items()
|
|
403
403
|
result = await gather_with_concurrency(
|
|
404
404
|
max_parallel,
|
|
405
|
-
*[
|
|
405
|
+
*[self.deploy(device, cmds, args, progress_bar) for device, cmds in deploy_items],
|
|
406
406
|
)
|
|
407
407
|
res = DeployResult(hostnames=[], results={}, durations={}, original_states={})
|
|
408
408
|
res.add_results(results={dev.fqdn: dev_res for (dev, _), dev_res in zip(deploy_items, result)})
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|