Skip to content

Commit 2b65f9c

Browse files
authored
Merge pull request #107 from restatedev/chore/bind-to-dualstack-addr
fix: bind to dual-stack address
2 parents 79922e1 + 2bf8da1 commit 2b65f9c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ async fn main() -> anyhow::Result<()> {
146146
.service(health)
147147
.service(metrics)
148148
})
149-
.bind("0.0.0.0:8080")?
149+
.bind("[::]:8080")?
150150
.shutdown_timeout(5)
151151
.run();
152152

0 commit comments

Comments
 (0)