You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,7 @@ Please refer to the [NEWS](NEWS.md) for a list of changes which have an affect o
22
22
-`intelmq.lib.mixins.sql` Add Support for MySQL (PR#2625 by Karl-Johan Karlsson).
23
23
- New parameter `stop_retry_limit` to gracefully handle stopping bots which take longer to shutdown (PR#2598 by Lukas Heindl, fixes #2595).
24
24
-`intelmq.lib.datatypes`: Remove unneeded Dict39 alias (PR#2639 by Nakul Rajpal, fixes #2635)
25
+
-`intelmq.lib.mixins.http`: Only set HTTP header 'Authorization' if username or password are set and are not both empty string as they are by default in the Manager (fixes #2590, PR#2634 by Sebastian Wagner).
Copy file name to clipboardExpand all lines: intelmq/lib/mixins/http.py
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -65,9 +65,12 @@ def setup(self):
65
65
# tls certificate settings
66
66
ifself.ssl_client_certisnotNone:
67
67
self.__session.cert=self.ssl_client_cert
68
-
# auth settings
69
-
ifself.http_usernameisnotNone:
68
+
# auth settings. username or password must exist (if only one, then this is likely an error, but we should try without auth) and not be an empty string
0 commit comments