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
session_statuses.delete(key); session_ipids.delete(key); session_sack_deadlines.delete(key); session_pafren_expirations.delete(key); let addr = clients_sessions.get(key); clients_sessions.delete(addr); session_clients.delete(key);
Somehow, the session is still there (the deletion is not complete).
Because, if(clients_sessions.has(json_object.command.from)) {
can still find the previously deleted session
Then, it will call: console.log("XLOG: [2] set session to CLOSED");
set the deleted session again to CLOSED.
The text was updated successfully, but these errors were encountered:
cuttlefishi
nick-ivanov
rcookie777
No branches or pull requests
session_statuses.delete(key);
session_ipids.delete(key);
session_sack_deadlines.delete(key);
session_pafren_expirations.delete(key);
let addr = clients_sessions.get(key);
clients_sessions.delete(addr);
session_clients.delete(key);
Somehow, the session is still there (the deletion is not complete).
Because, if(clients_sessions.has(json_object.command.from)) {
can still find the previously deleted session
Then, it will call: console.log("XLOG: [2] set session to CLOSED");
set the deleted session again to CLOSED.
The text was updated successfully, but these errors were encountered: