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/client.rs
+2-2
Original file line number
Diff line number
Diff line change
@@ -547,7 +547,7 @@ where
547
547
error_response(
548
548
&mut write,
549
549
&format!(
550
-
"There is no database\"{}\" and user\"{}\" in our system. Create a free database on https://postgresml.org to get started.",
550
+
"No pool configured for database: {:?}, user: {:?}",
551
551
pool_name, username
552
552
),
553
553
)
@@ -1099,7 +1099,7 @@ where
1099
1099
1100
1100
error_response(
1101
1101
&mutself.write,
1102
-
"Your database ran out of GPU concurrency capacity. Please upgrade by logging into your account on https://postgresml.org and increasing your GPU concurrency limit.",
1102
+
format!("could not get connection from the pool - {}", err).as_str(),
0 commit comments