Skip to content

Commit

Permalink
Now using unique env var for exchange config
Browse files Browse the repository at this point in the history
  • Loading branch information
zubairov committed Feb 22, 2017
1 parent 196aea6 commit 433703a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion spec-integration/integration.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ describe('Integration test', () => {
describe('subscribe then publish', () => {
const cfg = {
amqpURI : process.env.AMQP_URL,
topic: 'integartion-testing-' + (process.env.TRAVIS_BUILD_ID || 'local'),
topic: 'integartion-testing-' + (process.env.TRAVIS_COMMIT || 'local')
+ '-' + (process.env.TRAVIS_NODE_VERSION || 'local'),
bindingKeys: 'foo.bar'
};

Expand Down

0 comments on commit 433703a

Please sign in to comment.