passed lint

This commit is contained in:
Christopher Pickering 2022-06-14 07:58:35 -05:00
parent cf2ca71dee
commit 98f3c126e5
No known key found for this signature in database
GPG Key ID: E14DB3B0A0FACF84

View File

@ -279,15 +279,14 @@ class Monitor extends BeanModel {
if (this.auth_method === "ntlm") {
options.httpsAgent.keepAlive = true;
let ntlmOptions =
{
let ntlmOptions = {
username: this.basic_auth_user,
password: this.basic_auth_pass,
domain: this.authDomain,
}
};
if (this.authWorkstation) {
ntlmOptions.workstation= this.authWorkstation;
ntlmOptions.workstation = this.authWorkstation;
}
res = await httpNtlm(options, ntlmOptions);