Skip to content
Snippets Groups Projects
Commit 5033890d authored by Jorrit Schaap's avatar Jorrit Schaap
Browse files

SW-796: use normal rabbitmq port 5672 on non-production/test machines

parent fe7ba5d4
No related branches found
No related tags found
1 merge request!47Merge Lofar release 4 0 back to master
......@@ -8,7 +8,7 @@ DEFAULT_BROKER = "scu001.control.lofar" if isProductionEnvironment() else \
"scu199.control.lofar" if isTestEnvironment() else \
"localhost"
DEFAULT_PORT = 5675
DEFAULT_PORT = 5675 if isProductionEnvironment() or isTestEnvironment() else 5672
DEFAULT_USER = "guest"
DEFAULT_PASSWORD = "guest"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment