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
Copy file name to clipboardExpand all lines: src/query/service/src/servers/http/middleware/session.rs
+7-5Lines changed: 7 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -617,7 +617,7 @@ impl<E: Endpoint> Endpoint for HTTPSessionEndpoint<E> {
617
617
}else{
618
618
let msg =
619
619
format!("sticky_node_id '{sticky_node_id}' not found in cluster",);
620
-
warn!("{}", msg);
620
+
warn!("[HTTP-SESSION] {}", msg);
621
621
Err(Error::from(HttpErrorCode::bad_request(
622
622
ErrorCode::BadArguments(msg),
623
623
)))
@@ -650,7 +650,7 @@ impl<E: Endpoint> Endpoint for HTTPSessionEndpoint<E> {
650
650
}
651
651
Ok(None) => {
652
652
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);
653
-
warn!("{}", msg);
653
+
warn!("[HTTP-SESSION] {}", msg);
654
654
returnErr(Error::from(HttpErrorCode::bad_request(
655
655
ErrorCode::UnknownWarehouse(msg),
656
656
)));
@@ -671,7 +671,9 @@ impl<E: Endpoint> Endpoint for HTTPSessionEndpoint<E> {
0 commit comments