Skip to content

Commit 515ccea

Browse files
committed
fix: Pass runtime hostname ( not friendly_name )
Signed-off-by: Lucas Fontes <lucas@cosmonic.com>
1 parent 89c09ac commit 515ccea

File tree

1 file changed

+1
-1
lines changed
  • crates/wash-runtime/src/washlet

1 file changed

+1
-1
lines changed

crates/wash-runtime/src/washlet/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ impl ClusterHostBuilder {
7575
.with_label("hostgroup", host_group.clone());
7676

7777
if let Some(host_name) = self.host_name {
78-
builder = builder.with_friendly_name(host_name)
78+
builder = builder.with_hostname(host_name)
7979
}
8080
let heartbeat_interval = self.heartbeat_interval.unwrap_or(HEARTBEAT_INTERVAL);
8181
let host = builder.build()?;

0 commit comments

Comments
 (0)