Skip to content

Commit

Permalink
Merge pull request #136 from scality/fix/imports
Browse files Browse the repository at this point in the history
fix(arsenal): remove circular dependency
  • Loading branch information
rahulreddy committed Aug 10, 2016
2 parents 6a69b9b + a3cb8c9 commit 4b1288c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/auth/v2/headerAuthCheck.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict'; // eslint-disable-line strict

const errors = require('../../../index').errors;
const errors = require('../../errors');
const constructStringToSign = require('./constructStringToSign');
const checkRequestExpiry = require('./checkRequestExpiry');
const algoCheck = require('./algoCheck');
Expand Down
2 changes: 1 addition & 1 deletion lib/auth/v2/queryAuthCheck.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict'; // eslint-disable-line strict

const errors = require('../../../index').errors;
const errors = require('../../errors');

const algoCheck = require('./algoCheck');
const constructStringToSign = require('./constructStringToSign');
Expand Down
2 changes: 1 addition & 1 deletion lib/auth/v4/queryAuthCheck.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict'; // eslint-disable-line strict

const errors = require('../../../index').errors;
const errors = require('../../errors');

const constructStringToSign = require('./constructStringToSign');
const checkTimeSkew = require('./timeUtils').checkTimeSkew;
Expand Down
3 changes: 1 addition & 2 deletions lib/auth/vault.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
'use strict'; // eslint-disable-line strict

const errors = require('../../index').errors;

const AuthInfo = require('./AuthInfo');
const backend = require('./in_memory/backend');
const errors = require('../errors');

const client = backend;

Expand Down

0 comments on commit 4b1288c

Please sign in to comment.