We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b454d7 commit 1336a33Copy full SHA for 1336a33
packages/core/api/provision/src/route/datacenters.rs
@@ -75,6 +75,8 @@ pub async fn servers(
75
servers: servers_res
76
.servers
77
.into_iter()
78
+ // Filter out installing servers
79
+ .filter(|server| server.install_complete_ts.is_some())
80
.map(ApiInto::api_into)
81
.collect(),
82
})
0 commit comments