Skip to content

Commit

Permalink
Merge pull request #148 from Pix3l01/fix-healthcheck
Browse files Browse the repository at this point in the history
Make server listen on both IPv6 and IPv4 by default to fix docker healthcheck
  • Loading branch information
sigaloid authored Jun 20, 2024
2 parents 2d5cfcb + 9197586 commit 213481e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ async fn main() {
.long("address")
.value_name("ADDRESS")
.help("Sets address to listen on")
.default_value("0.0.0.0")
.default_value("[::]")
.num_args(1),
)
.arg(
Expand Down

0 comments on commit 213481e

Please sign in to comment.