Skip to content

Commit 75ad265

Browse files
committed
Fixes #202. Add TypeError handling on request make
1 parent 44af39d commit 75ad265

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reportportal_client/core/rp_requests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def make(self):
7676
timeout=self.http_timeout)
7777
)
7878
# https://github.com/reportportal/client-Python/issues/39
79-
except (KeyError, IOError, ValueError) as exc:
79+
except (KeyError, IOError, ValueError, TypeError) as exc:
8080
logger.warning(
8181
"Report Portal %s request failed",
8282
self.name,

0 commit comments

Comments
 (0)