fixed probable bug in rwlocks
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Paul 2023-05-07 02:25:26 +02:00
parent cd33f9cf35
commit ccb3b4fff0

View File

@ -75,11 +75,11 @@ pub async fn run() {
ipdata: ip_to_send, ipdata: ip_to_send,
}; };
if !send_to_ipbl_websocket(&mut wssocketrr, &ipe).await { if !send_to_ipbl_websocket(&mut wssocketrr, &ipe).await {
drop(ctx);
wssocketrr = websocketreqrep(&ctxwsrr).await; wssocketrr = websocketreqrep(&ctxwsrr).await;
break; break;
} }
} }
drop(ctx);
continue continue
} }