Skip to content

Commit

Permalink
fix: remove deprecated node-uuid for uuid
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickleet committed Dec 2, 2018
1 parent 8aec100 commit 83eb1f8
Show file tree
Hide file tree
Showing 4 changed files with 7,340 additions and 2,476 deletions.
2 changes: 1 addition & 1 deletion bus/middleware/correlate.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var newId = require('node-uuid');
var newId = require('uuid/v1');

function addCorrelationId (queueName, message, options, next) {
if (typeof options === 'function') {
Expand Down
2 changes: 1 addition & 1 deletion bus/rabbitmq/correlator.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var cluster = require('cluster');
var events = require('events'),
fs = require('fs'),
newId = require('node-uuid'),
newId = require('uuid/v1'),
path = require('path'),
util = require('util');
var warn = require('debug')('servicebus:warn');
Expand Down

0 comments on commit 83eb1f8

Please sign in to comment.