Binbin
Binbin
issue: https://github.com/fluent/fluent-logger-python/issues/175 When using asyncsender, there is a queue holds the logs to be send: - when except socket.gaierror, i clear the queue and print log - this avoids the...
A tricky way fix issue: https://github.com/fluent/fluent-logger-python/issues/172 Call handleError when emit raise exception and then raise again... Also feel free to close this if un-needed
I encountered a problem when using asyncsender, the fastapi project, fluent-logger==0.9.6 When I was running pytest, I found that it would be blocked for a long time after the pytest...
A timing issue like this was reported in freebsd daily CI: ``` *** [err]: Verify command got unblocked after resharding in tests/unit/cluster/cli.tcl Expected 'CLUSTERDOWN The cluster is down' to match...
In unsubscribe related commands, we need to read the specified number of replies according to the number of parameters. These commands may return multiple RESP replies, and currently redis-cli only...
By comparing the redis unstable branch code and the redis-doc code, here are what we need to deal with (redis 7.0) ~~`server_time_usec`, added in https://github.com/redis/redis/pull/8132 now in redis-doc is `server_time_in_usec`,...
Introduce socket `shutdown()` into connection type, and use it on normal socket if a fork is active. This allows us to close client connections when there are child processes sharing...
If a replica for some reasons goes into a loop of requesting a full sync from the master, it'll cause the master to continuously fork for RDB generation (either disk-less...
This allows specifying the timeout value for opening the TCP connection to a server. The timeout, default 60 seconds, can be specified using the new `-t` switch. revive #3764, fixes...
This PR, we added -4 and -6 options to redis-cli to determine IPV4 / IPV6 priority in DNS lookup. This was mentioned in https://github.com/redis/redis/pull/11151#issuecomment-1231570651 For now it's only used in...