xch-blockchain/chia/server
dustinface 643b29e636
Drop broken message types logging (#13914)
Seems like the idea was to log an overview of message types for the 
currently active api calls whenever we have multiples of 100 running. 
This currently isn't working at all because `len(message_types) % 100 == 
0` will only trigger if there are 100 different message types in the 
counter (we don't even have that much different messages). A fix would 
be to check `message_types.total() % 100 == 0`. But then, if we hover 
around 100 active messages this will repeatedly trigger logs since we 
decrement for each processed message, im not sure this all makes much 
sense and we anyway log all received message types with `DEBUG` logs so 
i decided to just drop this. If someone thinks we should keep it with 
the fix or has ideas to make this a more reasonable log instead of 
dropping it, let me know :)
2022-11-16 10:44:48 -06:00
..
__init__.py git mv src chia 2021-04-04 21:41:39 -07:00
address_manager.py configure isort to add the future annotations import (#13327) 2022-09-30 03:40:22 -05:00
address_manager_sqlite_store.py Peer db new serialization (#9079) 2021-11-19 11:12:58 -08:00
address_manager_store.py remove chia.util.path.mkdir() (#10842) 2022-06-08 10:24:40 -05:00
introducer_peers.py attempt to save time hashing PeerInfo objects in introducer (#1990) 2021-04-17 09:25:40 -07:00
node_discovery.py Add optional outbound parameter to get_connections (#13879) 2022-11-15 17:40:16 -06:00
outbound_message.py server: Drop some unused code (#13867) 2022-11-08 18:04:56 -06:00
peer_store_resolver.py Peer db new serialization (#9079) 2021-11-19 11:12:58 -08:00
rate_limit_numbers.py configure isort to add the future annotations import (#13327) 2022-09-30 03:40:22 -05:00
rate_limits.py configure isort to add the future annotations import (#13327) 2022-09-30 03:40:22 -05:00
reconnect_task.py server: Create ssl contexts earlier + store them instead of all paths (#13512) 2022-09-29 12:14:20 -05:00
server.py Drop broken message types logging (#13914) 2022-11-16 10:44:48 -06:00
ssl_context.py configure isort to add the future annotations import (#13327) 2022-09-30 03:40:22 -05:00
start_data_layer.py Refactor test utils for import availability outside of repo (#13880) 2022-11-15 18:51:05 -06:00
start_farmer.py configure isort to add the future annotations import (#13327) 2022-09-30 03:40:22 -05:00
start_full_node.py switch to context manager for task timing (#13473) 2022-11-05 17:46:40 -05:00
start_harvester.py configure isort to add the future annotations import (#13327) 2022-09-30 03:40:22 -05:00
start_introducer.py configure isort to add the future annotations import (#13327) 2022-09-30 03:40:22 -05:00
start_service.py server: Make ChiaServer a dataclass (#13574) 2022-11-03 11:28:23 -05:00
start_timelord.py configure isort to add the future annotations import (#13327) 2022-09-30 03:40:22 -05:00
start_wallet.py switch to context manager for task timing (#13473) 2022-11-05 17:46:40 -05:00
upnp.py Refactor away from post init for UPnP (#11837) 2022-09-26 11:19:33 -05:00
ws_connection.py Call close callback for already closed connections (#13727) 2022-11-15 16:23:06 -06:00