docs: static port incorrectly declared as a string (#8046)

static attribute of the port stanza is supposed to be an integer but is incorrectly declared as a string in the example.
This commit is contained in:
G
2020-05-26 18:21:16 +05:30
committed by GitHub
parent cc7e4b226b
commit 3f47a67f88

View File

@@ -48,7 +48,7 @@ job "docs" {
port "http" {}
port "https" {}
port "lb" {
static = "8889"
static = 8889
}
}
}