Skip to content
This repository has been archived by the owner on May 5, 2023. It is now read-only.

Commit

Permalink
Removing forgotten parameter.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andre Rodrigues committed Oct 13, 2012
1 parent eef05bc commit 798ece1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/services/serviceBus/wrap.js
Expand Up @@ -44,7 +44,7 @@ function Wrap(acsHost, issuer, accessKey) {
this.acsHost = acsHost; this.acsHost = acsHost;
this.issuer = issuer; this.issuer = issuer;
this.accessKey = accessKey; this.accessKey = accessKey;
this.wrapTokenManager = new WrapTokenManager(acsHost, issuer, accessKey, host); this.wrapTokenManager = new WrapTokenManager(acsHost, issuer, accessKey);
} }


/** /**
Expand Down
5 changes: 2 additions & 3 deletions lib/services/serviceBus/wraptokenmanager.js
Expand Up @@ -38,12 +38,11 @@ var ONE_SECOND_MS = 1000;
* @param {string} acsHost The access control host. * @param {string} acsHost The access control host.
* @param {string} issuer The service bus issuer. * @param {string} issuer The service bus issuer.
* @param {string} accessKey The service bus issuer password. * @param {string} accessKey The service bus issuer password.
* @param {string} host The host for the service.
*/ */
function WrapTokenManager(acsHost, issuer, accessKey, host) { function WrapTokenManager(acsHost, issuer, accessKey) {
this.activeTokens = { }; this.activeTokens = { };


this.wrapService = new WrapService(acsHost, issuer, accessKey, host); this.wrapService = new WrapService(acsHost, issuer, accessKey);
} }


WrapTokenManager.prototype.getAccessToken = function(scopeUri, callback) { WrapTokenManager.prototype.getAccessToken = function(scopeUri, callback) {
Expand Down

0 comments on commit 798ece1

Please sign in to comment.