This is an automated email from the ASF dual-hosted git repository.
lfrolov pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git
The following commit(s) were added to refs/heads/develop by this push:
new a6af45e [DATALAB-2731]: Disabled HTTP Requests into container logs
new 6f18391 Merge pull request #1477 from a1expol/develop
a6af45e is described below
commit a6af45ef450054d0630b04352f71ba648fe60d9a
Author: Oleksandr Polishchuk <[email protected]>
AuthorDate: Tue Mar 29 17:52:27 2022 +0300
[DATALAB-2731]: Disabled HTTP Requests into container logs
---
infrastructure-provisioning/src/general/lib/azure/actions_lib.py | 2 ++
infrastructure-provisioning/src/general/lib/azure/meta_lib.py | 2 ++
2 files changed, 4 insertions(+)
diff --git a/infrastructure-provisioning/src/general/lib/azure/actions_lib.py
b/infrastructure-provisioning/src/general/lib/azure/actions_lib.py
index ac49ea6..311e0a0 100644
--- a/infrastructure-provisioning/src/general/lib/azure/actions_lib.py
+++ b/infrastructure-provisioning/src/general/lib/azure/actions_lib.py
@@ -46,6 +46,8 @@ from fabric import *
from patchwork.files import exists
from patchwork import files
+logger = logging.getLogger("azure.core.pipeline.policies.http_logging_policy")
+logger.setLevel(logging.WARNING)
class AzureActions:
def __init__(self):
diff --git a/infrastructure-provisioning/src/general/lib/azure/meta_lib.py
b/infrastructure-provisioning/src/general/lib/azure/meta_lib.py
index e795c77..3c25c27 100644
--- a/infrastructure-provisioning/src/general/lib/azure/meta_lib.py
+++ b/infrastructure-provisioning/src/general/lib/azure/meta_lib.py
@@ -35,6 +35,8 @@ import sys
import os
import json
+logger = logging.getLogger("azure.core.pipeline.policies.http_logging_policy")
+logger.setLevel(logging.WARNING)
class AzureMeta:
def __init__(self):
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]