Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/support/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ export const sendANumberOfRandomMessages = async (publisher: Publisher, offset =
}

export const getTestNodesFromEnv = (): { host: string; port: number }[] => {
const envValue = process.env.RABBIT_MQ_TEST_NODES ?? "localhost:5552"
const envValue = process.env.RABBIT_MQ_TEST_NODES ?? "rabbitmq:5552"
const nodes = envValue.split(";")
return nodes.map((n) => {
const [host, port] = n.split(":")
Expand Down