Removed duplicate field.
This commit is contained in:
parent
acf3bab418
commit
30a7cdff9f
1 changed files with 8 additions and 1 deletions
|
|
@ -63,7 +63,14 @@ export default {
|
|||
[headerKeys.SESSION_SEQUENCE_NUMBER]: sessionKey
|
||||
};
|
||||
|
||||
const url = cfDistroUrl + endpoint;
|
||||
var url = cfDistroUrl + endpoint;
|
||||
|
||||
if ( endpoint.toLowerCase().includes('coverage/api/') )
|
||||
{
|
||||
url = "https://localhost:7249" + endpoint;
|
||||
console.error("Using local url for coverage endpoint: " + url);
|
||||
}
|
||||
|
||||
axios({
|
||||
method,
|
||||
url,
|
||||
|
|
|
|||
Loading…
Reference in a new issue