Navigation Menu

Skip to content

Commit

Permalink
Closes-Bug: #1420628
Browse files Browse the repository at this point in the history
Typo in an unrelated file caused a global variable "authApi" to become local
scope and making "authApi" unavailable in service instance page.

Change-Id: I3acd7967a9d86bceb8e4350213a109a0700dc28b
(cherry picked from commit 2453339)
  • Loading branch information
knagakiran committed Feb 12, 2015
1 parent c32ed49 commit aec85b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webroot/monitor/tenant-network/api/network.mon.api.js
Expand Up @@ -19,7 +19,7 @@ var cacheApi = require(process.mainModule.exports["corePath"] + '/src/serverroot
ctrlGlobal = require('../../../common/api/global'),
nwMonJobs = require('../jobs/network.mon.jobs.js'),
appErrors = require(process.mainModule.exports["corePath"] + '/src/serverroot/errors/app.errors'),
assert = require('assert'),
assert = require('assert');
authApi = require(process.mainModule.exports["corePath"] + '/src/serverroot/common/auth.api'),

nwMonApi = module.exports;
Expand Down

0 comments on commit aec85b8

Please sign in to comment.