Skip to content

Commit 91486f4

Browse files
ignore http for sonar check
1 parent 828edf7 commit 91486f4

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

  • ingestion/src/metadata/ingestion/source/database/sapsuccessfactors

ingestion/src/metadata/ingestion/source/database/sapsuccessfactors/client.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@
4242
logger = ingestion_logger()
4343

4444
ODATA_METADATA_PATH = "/odata/{version}/$metadata"
45-
SAP_DATA_NS = "http://www.sap.com/Protocols/SAPData"
45+
SAP_DATA_NS = "http://www.sap.com/Protocols/SAPData" # NOSONAR - XML namespace URI, not a URL
4646

4747
_SAML_NS = "urn:oasis:names:tc:SAML:2.0:assertion"
48-
_DS_NS = "http://www.w3.org/2000/09/xmldsig#"
49-
_EXC_C14N = "http://www.w3.org/2001/10/xml-exc-c14n#"
50-
_RSA_SHA256 = "http://www.w3.org/2001/04/xmldsig-more#rsa-sha256"
51-
_SHA256 = "http://www.w3.org/2001/04/xmlenc#sha256"
52-
_ENV_SIG = "http://www.w3.org/2000/09/xmldsig#enveloped-signature"
48+
_DS_NS = "http://www.w3.org/2000/09/xmldsig#" # NOSONAR - W3C XML namespace URI
49+
_EXC_C14N = "http://www.w3.org/2001/10/xml-exc-c14n#" # NOSONAR - W3C XML namespace URI
50+
_RSA_SHA256 = "http://www.w3.org/2001/04/xmldsig-more#rsa-sha256" # NOSONAR - W3C XML namespace URI
51+
_SHA256 = "http://www.w3.org/2001/04/xmlenc#sha256" # NOSONAR - W3C XML namespace URI
52+
_ENV_SIG = "http://www.w3.org/2000/09/xmldsig#enveloped-signature" # NOSONAR - W3C XML namespace URI
5353
_SAML_BEARER_GRANT = "urn:ietf:params:oauth:grant-type:saml2-bearer"
5454

5555
_SAML_ASSERTION_VALIDITY_MINUTES = 10

0 commit comments

Comments
 (0)