Skip to content

Commit 433703a

Browse files
committed
Now using unique env var for exchange config
1 parent 196aea6 commit 433703a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

spec-integration/integration.spec.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ describe('Integration test', () => {
3838
describe('subscribe then publish', () => {
3939
const cfg = {
4040
amqpURI : process.env.AMQP_URL,
41-
topic: 'integartion-testing-' + (process.env.TRAVIS_BUILD_ID || 'local'),
41+
topic: 'integartion-testing-' + (process.env.TRAVIS_COMMIT || 'local')
42+
+ '-' + (process.env.TRAVIS_NODE_VERSION || 'local'),
4243
bindingKeys: 'foo.bar'
4344
};
4445

0 commit comments

Comments
 (0)