cafs-cache-cdn-client 1.0.10__tar.gz → 1.0.11__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.
Files changed (18) hide show
  1. {cafs_cache_cdn_client-1.0.10 → cafs_cache_cdn_client-1.0.11}/PKG-INFO +1 -1
  2. {cafs_cache_cdn_client-1.0.10 → cafs_cache_cdn_client-1.0.11}/cafs_cache_cdn_client/client.py +2 -1
  3. {cafs_cache_cdn_client-1.0.10 → cafs_cache_cdn_client-1.0.11}/pyproject.toml +1 -1
  4. {cafs_cache_cdn_client-1.0.10 → cafs_cache_cdn_client-1.0.11}/README.md +0 -0
  5. {cafs_cache_cdn_client-1.0.10 → cafs_cache_cdn_client-1.0.11}/cafs_cache_cdn_client/__init__.py +0 -0
  6. {cafs_cache_cdn_client-1.0.10 → cafs_cache_cdn_client-1.0.11}/cafs_cache_cdn_client/cafs/README.md +0 -0
  7. {cafs_cache_cdn_client-1.0.10 → cafs_cache_cdn_client-1.0.11}/cafs_cache_cdn_client/cafs/__init__.py +0 -0
  8. {cafs_cache_cdn_client-1.0.10 → cafs_cache_cdn_client-1.0.11}/cafs_cache_cdn_client/cafs/blob/__init__.py +0 -0
  9. {cafs_cache_cdn_client-1.0.10 → cafs_cache_cdn_client-1.0.11}/cafs_cache_cdn_client/cafs/blob/hash_.py +0 -0
  10. {cafs_cache_cdn_client-1.0.10 → cafs_cache_cdn_client-1.0.11}/cafs_cache_cdn_client/cafs/blob/package.py +0 -0
  11. {cafs_cache_cdn_client-1.0.10 → cafs_cache_cdn_client-1.0.11}/cafs_cache_cdn_client/cafs/blob/utils.py +0 -0
  12. {cafs_cache_cdn_client-1.0.10 → cafs_cache_cdn_client-1.0.11}/cafs_cache_cdn_client/cafs/client.py +0 -0
  13. {cafs_cache_cdn_client-1.0.10 → cafs_cache_cdn_client-1.0.11}/cafs_cache_cdn_client/cafs/exceptions.py +0 -0
  14. {cafs_cache_cdn_client-1.0.10 → cafs_cache_cdn_client-1.0.11}/cafs_cache_cdn_client/cafs/types.py +0 -0
  15. {cafs_cache_cdn_client-1.0.10 → cafs_cache_cdn_client-1.0.11}/cafs_cache_cdn_client/file_utils.py +0 -0
  16. {cafs_cache_cdn_client-1.0.10 → cafs_cache_cdn_client-1.0.11}/cafs_cache_cdn_client/repo/__init__.py +0 -0
  17. {cafs_cache_cdn_client-1.0.10 → cafs_cache_cdn_client-1.0.11}/cafs_cache_cdn_client/repo/client.py +0 -0
  18. {cafs_cache_cdn_client-1.0.10 → cafs_cache_cdn_client-1.0.11}/cafs_cache_cdn_client/repo/datatypes.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: cafs-cache-cdn-client
3
- Version: 1.0.10
3
+ Version: 1.0.11
4
4
  Summary: Async Cache CDN client implementation
5
5
  Keywords: cafs,cache
6
6
  Author: Konstantin Belov
@@ -45,7 +45,7 @@ class CacheCdnClient:
45
45
  _repo_client: RepoClient
46
46
 
47
47
  __connection_per_cafs_server: int
48
- __cafs_client_lock = asyncio.Lock()
48
+ __cafs_client_lock: asyncio.Lock
49
49
 
50
50
  def __init__(
51
51
  self,
@@ -58,6 +58,7 @@ class CacheCdnClient:
58
58
  self._repo_client = RepoClient(server, logger=self.logger)
59
59
  self.__connection_per_cafs_server = connection_per_cafs_server
60
60
  self.verbose_debug = verbose_debug
61
+ self.__cafs_client_lock = asyncio.Lock()
61
62
 
62
63
  async def _init_cafs_client(self) -> None:
63
64
  self.logger.debug(
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "cafs-cache-cdn-client"
3
- version = "1.0.10"
3
+ version = "1.0.11"
4
4
  description = "Async Cache CDN client implementation"
5
5
  authors = [
6
6
  { name = "Konstantin Belov", "email" = "k.belov@gaijin.team" },