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.
- {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/PKG-INFO +1 -1
- {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/pyproject.toml +1 -1
- {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_client/__init__.py +1 -3
- {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_client/runtime/aio.py +1 -1
- {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_client/utils/collections.py +1 -1
- {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/README.md +0 -0
- {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_client/config.py +0 -0
- {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_client/grpc_connectivity.py +0 -0
- {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_client/runtime/__init__.py +0 -0
- {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_client/runtime/state_machine.py +0 -0
- {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_client/utils/__init__.py +0 -0
- {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_client/utils/aio.py +0 -0
- {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_proto/__init__.py +0 -0
- {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_proto/fumarole_pb2.py +0 -0
- {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_proto/fumarole_pb2.pyi +0 -0
- {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_proto/fumarole_pb2_grpc.py +0 -0
- {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_proto/geyser_pb2.py +0 -0
- {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_proto/geyser_pb2.pyi +0 -0
- {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_proto/geyser_pb2_grpc.py +0 -0
- {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_proto/solana_storage_pb2.py +0 -0
- {yellowstone_fumarole_client-0.2.0 → yellowstone_fumarole_client-0.2.1}/yellowstone_fumarole_proto/solana_storage_pb2.pyi +0 -0
- {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
|
[tool.poetry]
|
2
2
|
name = "yellowstone-fumarole-client"
|
3
|
-
version = "0.2.
|
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()
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|