-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature.extendprecommit #375
base: develop
Are you sure you want to change the base?
Feature.extendprecommit #375
Conversation
Quality Gate failedFailed conditions See analysis details on SonarCloud Catch issues before they fail your Quality Gate with our IDE extension SonarLint |
|
||
res = requests.get(self.urlbase, headers=headers, verify=False) | ||
res = requests.get(str(self.urlbase), headers=headers, verify=False) |
Check failure
Code scanning / SonarCloud
Server certificates should be verified during SSL/TLS connections High
else: | ||
data["node"]["ip_addresses"] = [management_ip] | ||
|
||
handle_id = device["handle_id"] | ||
res = requests.put(self.urlbase + str(handle_id) + "/", headers=headers, json=data, verify=False) | ||
res = requests.put(str(self.urlbase) + str(handle_id) + "/", headers=headers, json=data, verify=False) |
Check failure
Code scanning / SonarCloud
Server certificates should be verified during SSL/TLS connections High
Ectended the pre-commit and solved the issues that mypy marked