summaryrefslogtreecommitdiff
path: root/releasenotes
diff options
context:
space:
mode:
authorDmitry Tantsur <dtantsur@protonmail.com>2021-08-05 16:17:03 +0200
committerDmitry Tantsur <dtantsur@protonmail.com>2021-08-06 07:48:37 +0000
commitd593c4f43c7dd17e4c782e28dab04707d7432383 (patch)
tree86684fc4f9ce5faa672773c7ca435273c999e789 /releasenotes
parent393d3cd545d9658d909d272f3d7caae20df117e8 (diff)
downloadironic-d593c4f43c7dd17e4c782e28dab04707d7432383.tar.gz
Retry stdlib ssl.SSLError
Apparently, connection to the agent can fail with Unexpected error when processing next clean step. SSLError: ('timed out',): ssl.SSLError: ('timed out',) This change adds SSLError to retriable errors since most of them are related to temporary conditions, and the certificate validation failure is handled by requests separately. Change-Id: I4805d410b4bc98196e77d8c44a217e363dc88f0a (cherry picked from commit 528eb9e4a99762dea5ef5e08f3dd42d459ce2d1c)
Diffstat (limited to 'releasenotes')
-rw-r--r--releasenotes/notes/sslerror-287edf7f8b3c5f1c.yaml4
1 files changed, 4 insertions, 0 deletions
diff --git a/releasenotes/notes/sslerror-287edf7f8b3c5f1c.yaml b/releasenotes/notes/sslerror-287edf7f8b3c5f1c.yaml
new file mode 100644
index 000000000..9eac955bf
--- /dev/null
+++ b/releasenotes/notes/sslerror-287edf7f8b3c5f1c.yaml
@@ -0,0 +1,4 @@
+---
+fixes:
+ - |
+ Retries ``ssl.SSLError`` when connecting to the agent.