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 926eff6 commit 05bd7c4Copy full SHA for 05bd7c4
src/epsilon/server/instance.rs
@@ -99,7 +99,7 @@ impl Instance {
99
let address_option = status.pod_ip.as_ref();
100
101
if let Some(address) = address_option {
102
- let timeout = Duration::from_millis(500);
+ let timeout = Duration::from_millis(150);
103
let config = ConnectionConfig::build(address).with_timeout(timeout);
104
105
Ok(config.connect().await?.status().await?.status)
@@ -168,12 +168,8 @@ impl Instance {
168
}
169
170
pub async fn to_json(&self) -> InstanceJson {
171
- info!("Converting instance to json");
172
-
173
let info_result = self.get_info().await;
174
175
- info!("Got info");
176
177
InstanceJson {
178
name: self.get_name().to_string(),
179
template: self.get_template_name().to_string(),
0 commit comments