summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Doane <jaydoane@apache.org>2022-10-15 17:23:51 -0700
committerNick Vatamaniuc <vatamane@gmail.com>2022-10-17 14:54:46 -0400
commitee29c5cb9b16830b6a913bd9890f0d0fc15aea6b (patch)
tree068f6b38ed81faf79f4aef6227b761b95c80cfdd
parent15ec5dcac9fc6d21b1efc691cf69488592dc5180 (diff)
downloadcouchdb-set-test-prometheus-port.tar.gz
Make test prometheus port explicitset-test-prometheus-port
These tests currently pass without this config parameter being set because it gets that configuration from a test template. However, this is fragile, and it's better practice to keep everything in one place. This makes the configuration explicit.
-rw-r--r--src/couch_prometheus/test/eunit/couch_prometheus_e2e_tests.erl1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/couch_prometheus/test/eunit/couch_prometheus_e2e_tests.erl b/src/couch_prometheus/test/eunit/couch_prometheus_e2e_tests.erl
index 160c1bea7..027402b51 100644
--- a/src/couch_prometheus/test/eunit/couch_prometheus_e2e_tests.erl
+++ b/src/couch_prometheus/test/eunit/couch_prometheus_e2e_tests.erl
@@ -81,6 +81,7 @@ setup_prometheus(WithAdditionalPort) ->
WithAdditionalPort,
Persist
),
+ ok = config:set("prometheus", "port", ?PROM_PORT, Persist),
% It's already started by default, so restart to pick up config
ok = application:stop(couch_prometheus),
ok = application:start(couch_prometheus),