mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
Changed setImmediate from async library to node default.
This commit is contained in:
parent
b4195b15c6
commit
11742db503
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ module.exports = function(config, auth, storage) {
|
|||
packages,
|
||||
function(pkg, cb) {
|
||||
auth.allow_access(pkg.name, req.remote_user, function(err, allowed) {
|
||||
async.setImmediate(function() {
|
||||
setImmediate(function() {
|
||||
if (err) {
|
||||
cb(null, false);
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue