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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gnetcli_adapter
3
- Version: 2.4.0
3
+ Version: 2.4.1
4
4
  Summary: Gnetcli-server adapter for Annet
5
5
  Author-email: Aleksandr Balezin <gescheit12@gmail.com>
6
6
  Requires-Python: >=3.10
@@ -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
- *[asyncio.Task(self.deploy(device, cmds, args, progress_bar)) for device, cmds in deploy_items],
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