You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -593,8 +598,10 @@ impl<E: Endpoint> Endpoint for HTTPSessionEndpoint<E> {
593
598
);
594
599
forward_request(req, node).await
595
600
}else{
596
-
let msg =
597
-
format!("session lost due to server restart or shutdown: node '{sticky_node_id}' not found in cluster",);
601
+
let msg = format!(
602
+
"Sticky session state lost: node '{sticky_node_id}' not found in cluster, request={}",
603
+
get_request_info(req)
604
+
);
598
605
warn!("[HTTP-SESSION] {}", msg);
599
606
Err(Error::from(HttpErrorCode::bad_request(
600
607
ErrorCode::BadArguments(msg),
@@ -627,7 +634,7 @@ impl<E: Endpoint> Endpoint for HTTPSessionEndpoint<E> {
627
634
.into());
628
635
}
629
636
Ok(None) => {
630
-
let msg = format!("Not find the '{}' warehouse; it is possible that all nodes of the warehouse have gone offline. Please exit the client and reconnect, or use `use warehouse <new_warehouse>`", warehouse);
637
+
let msg = format!("Not find the '{}' warehouse; it is possible that all nodes of the warehouse have gone offline. Please exit the client and reconnect, or use `use warehouse <new_warehouse>`. request = {}.", warehouse, get_request_info(req));
0 commit comments