-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Retry on requests.exceptions.ConnectionError (again) (#282)
In a previous PR, we switched from retrying on requests connection errors to the internal Cognite exceptions that wrapped these. This fixed some of the issues encountered by the customer (SLB). But, in some corner cases, such as for authorization, you can still get an unwrapped requests.exceptions.ConnectionError (as seen by the customer). This re-adds the retry on ConnectionError in addition to the internal Cognite SDK classes, to be more resilient.
- Loading branch information
1 parent
e4ffd46
commit 6e228db
Showing
3 changed files
with
13 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "cognite-extractor-utils" | ||
version = "6.3.0" | ||
version = "6.3.1" | ||
description = "Utilities for easier development of extractors for CDF" | ||
authors = ["Mathias Lohne <[email protected]>"] | ||
license = "Apache-2.0" | ||
|