Bas Couwenberg pushed to branch upstream at Debian GIS Project / proj
Commits:
dede5da3 by Bas Couwenberg at 2025-03-11T15:35:13+01:00
New upstream version 9.6.0~rc2
- - - - -
3 changed files:
- NEWS.md
- scripts/projinfo-bash-completion.sh
- src/networkfilemanager.cpp
Changes:
=====================================
NEWS.md
=====================================
@@ -75,6 +75,8 @@
* Fix typo in parameter for ITRF97 in ITRF2014 file (#4408)
+* Retry on "SSL connection timeout" (#4419)
+
## 9.5.1
=====================================
scripts/projinfo-bash-completion.sh
=====================================
@@ -1,4 +1,4 @@
-#!/bin/bash
+# Hashbang deliberately missing because this file should be sourced, not
executed
function_exists() {
declare -f -F "$1" > /dev/null
=====================================
src/networkfilemanager.cpp
=====================================
@@ -1696,7 +1696,8 @@ static double GetNewRetryDelay(int response_code, double
dfOldDelay,
(response_code == 400 && pszErrBuf &&
strstr(pszErrBuf, "RequestTimeout")) ||
(pszCurlError && strstr(pszCurlError, "Connection reset by peer")) ||
- (pszCurlError && strstr(pszCurlError, "Connection timed out"))) {
+ (pszCurlError && strstr(pszCurlError, "Connection timed out")) ||
+ (pszCurlError && strstr(pszCurlError, "SSL connection timeout"))) {
// Use an exponential backoff factor of 2 plus some random jitter
// We don't care about cryptographic quality randomness, hence:
// coverity[dont_call]
View it on GitLab:
https://salsa.debian.org/debian-gis-team/proj/-/commit/dede5da3af4258289e696831953023982725cdd6
--
View it on GitLab:
https://salsa.debian.org/debian-gis-team/proj/-/commit/dede5da3af4258289e696831953023982725cdd6
You're receiving this email because of your account on salsa.debian.org.
_______________________________________________
Pkg-grass-devel mailing list
[email protected]
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-grass-devel