Skip to content

Commit

Permalink
fix hostname env var and comma
Browse files Browse the repository at this point in the history
  • Loading branch information
abtreece committed Sep 23, 2024
1 parent f2f1be1 commit a60ba97
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion test/integration/consul/test.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

export LOCALHOST="localhost"
export HOSTNAME="localhost"

# Configure consul
curl -sX PUT http://$CONSUL_HOST:8500/v1/kv/key -d 'foobar'
Expand Down
16 changes: 8 additions & 8 deletions test/integration/file/test_json.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ EOT
cat <<EOT >> backends/json/3.json
{
"nested": {
"production": {
"app1": "10.0.1.10:8080",
"app2": "10.0.1.11:8080"
},
"staging": {
"app1": "172.16.1.10:8080",
"app2": "172.16.1.11:8080"
}
"production": {
"app1": "10.0.1.10:8080",
"app2": "10.0.1.11:8080"
},
"staging": {
"app1": "172.16.1.10:8080",
"app2": "172.16.1.11:8080"
}
}
}
EOT
Expand Down

0 comments on commit a60ba97

Please sign in to comment.