We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It can be seen in tcpdump that two responses came to one client query.
in stream 270 tcp.stream eq 270:
tcp.stream eq 270
tcpdump
The text was updated successfully, but these errors were encountered:
here the fix:
From: Dmitry Vasiliev <[email protected]> Date: Mon, 17 Apr 2023 17:12:26 +0300 Subject: [PATCH] fix backend reset --- sources/reset.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sources/reset.c b/sources/reset.c index ff4424b..d92e63e 100644 --- a/sources/reset.c +++ b/sources/reset.c @@ -58,6 +58,10 @@ int od_reset(od_server_t *server) if (server->relay.packet > 0) goto error; + if (!od_server_synchronized(server)) { + goto drop; + } + while (!od_server_synchronized(server)) { od_debug(&instance->logger, "reset", server->client, server, -- 2.40.0
UPD: that's not helping.
Sorry, something went wrong.
No branches or pull requests
It can be seen in tcpdump that two responses came to one client query.
in stream 270
tcp.stream eq 270
:tcpdump
The text was updated successfully, but these errors were encountered: