From 3f47a67f889f00e378b1fdd61fd11540943226ec Mon Sep 17 00:00:00 2001 From: G <54684207+codegabru@users.noreply.github.com> Date: Tue, 26 May 2020 18:21:16 +0530 Subject: [PATCH] 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. --- website/pages/docs/job-specification/network.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/pages/docs/job-specification/network.mdx b/website/pages/docs/job-specification/network.mdx index 4f267b116..c6a9c1b17 100644 --- a/website/pages/docs/job-specification/network.mdx +++ b/website/pages/docs/job-specification/network.mdx @@ -48,7 +48,7 @@ job "docs" { port "http" {} port "https" {} port "lb" { - static = "8889" + static = 8889 } } }