We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f64b66 commit ee75e29Copy full SHA for ee75e29
src/routes/list_database.rs
@@ -31,7 +31,6 @@ pub async fn route_list_database(
31
if managed_sts.is_err() {
32
return Err(Status::InternalServerError);
33
}
34
-
35
for sts in managed_sts.unwrap().items {
36
let database_name = sts.metadata.name.clone();
37
@@ -64,7 +63,7 @@ pub async fn route_list_database(
64
63
65
managed_dbs.push(DatabaseInstanceModel {
66
planetscale_api_url: format!(
67
- "https://{}.{}",
+ "https://moonscale-instance-{}.{}",
68
db_instance_name.unwrap(),
69
context.config.ingress_domain
70
),
0 commit comments