fix: NTLM monitor over plain HTTP fails with 400 Bad Request (#7351)

Co-authored-by: Petr Dvořák <petr.dvorak@pro-doma.cz>
This commit is contained in:
Petr Dvořák
2026-05-10 14:15:41 +02:00
committed by GitHub
parent 3fcddaf0b7
commit 0c5371afad

View File

@@ -1189,6 +1189,7 @@ class Monitor extends BeanModel {
let res;
if (this.auth_method === "ntlm") {
options.httpsAgent.keepAlive = true;
options.httpAgent.keepAlive = true;
res = await httpNtlm(options, {
username: this.basic_auth_user,