yellowstone-fumarole-client 0.2.0__tar.gz → 0.2.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.
Files changed (22) hide show
  1. {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/PKG-INFO +1 -1
  2. {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/pyproject.toml +1 -1
  3. {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_client/__init__.py +1 -3
  4. {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_client/runtime/aio.py +1 -1
  5. {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_client/utils/collections.py +1 -1
  6. {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/README.md +0 -0
  7. {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_client/config.py +0 -0
  8. {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_client/grpc_connectivity.py +0 -0
  9. {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_client/runtime/__init__.py +0 -0
  10. {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_client/runtime/state_machine.py +0 -0
  11. {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_client/utils/__init__.py +0 -0
  12. {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_client/utils/aio.py +0 -0
  13. {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_proto/__init__.py +0 -0
  14. {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_proto/fumarole_pb2.py +0 -0
  15. {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_proto/fumarole_pb2.pyi +0 -0
  16. {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_proto/fumarole_pb2_grpc.py +0 -0
  17. {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_proto/geyser_pb2.py +0 -0
  18. {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_proto/geyser_pb2.pyi +0 -0
  19. {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_proto/geyser_pb2_grpc.py +0 -0
  20. {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_proto/solana_storage_pb2.py +0 -0
  21. {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_proto/solana_storage_pb2.pyi +0 -0
  22. {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_proto/solana_storage_pb2_grpc.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: yellowstone-fumarole-client
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: Yellowstone Fumarole Python Client
5
5
  Home-page: https://github.com/rpcpool/yellowstone-fumarole
6
6
  Author: Louis-Vincent
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "yellowstone-fumarole-client"
3
- version = "0.2.0"
3
+ version = "0.2.1"
4
4
  homepage = "https://github.com/rpcpool/yellowstone-fumarole"
5
5
  repository = "https://github.com/rpcpool/yellowstone-fumarole"
6
6
  description = "Yellowstone Fumarole Python Client"
@@ -282,9 +282,7 @@ class FumaroleClient:
282
282
  while True:
283
283
  update = await dragonsmouth_outlet.get()
284
284
  yield update
285
- except asyncio.CancelledError:
286
- pass
287
- except asyncio.Queue:
285
+ except (asyncio.CancelledError, asyncio.QueueShutDown):
288
286
  pass
289
287
  finally:
290
288
  dragonsmouth_outlet.shutdown()
@@ -373,7 +373,7 @@ class AsyncioFumeDragonsmouthRuntime:
373
373
 
374
374
  await self._drain_slot_status()
375
375
 
376
- self.aclose()
376
+ await self.aclose()
377
377
  LOGGER.debug("Fumarole runtime exiting")
378
378
 
379
379
 
@@ -20,7 +20,7 @@ class OrderedSet:
20
20
 
21
21
  def popfirst(self):
22
22
  try:
23
- self.inner.popitem(last=False)
23
+ return self.inner.popitem(last=False)[0]
24
24
  except KeyError as e:
25
25
  raise KeyError(f"{OrderedDict.__name__} is empty") from e
26
26