-
-
Notifications
You must be signed in to change notification settings - Fork 150
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(pacer): Link pacer sessions to proxies #4192
Merged
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
ce3bba1
feat(setting): Adds new setting for managing a list of proxies
ERosendo f31ca58
feat(lib): Adds proxy selection logic for the ProxyPacerSession class
ERosendo db2c3ca
feat(lib): Tweaks log_into_pacer to return cookie jar and proxy address
ERosendo a99ac37
feat(lib): Updates get_or_cache_pacer_cookies to return tuples
ERosendo 8b3417e
feat(corpus_importer): Updates tasks logic and signature for improved…
ERosendo 588818d
feat(recap): Tweaks tasks to handle the new format for user cookies.
ERosendo 8489419
feat(scrapers): Updates update_docket_info_iquery task
ERosendo b93fd90
feat(corpus_importer): Updates commands to use the new cookie format
ERosendo 693552d
feat(lib): Adds tests for pacer session utils
ERosendo 5a47599
feat(pacer_session): Updates logic to pick a proxy connection str
ERosendo b0b6eb3
feat(corpus_importer): Adds an exception to the get_pacer_case_id_and…
ERosendo 02141d9
feat(test): Override PROXY_HOSTS setting for tests
ERosendo 3d2af40
Merge branch 'main' into 4087-feat-link-sessions-to-proxy
ERosendo f997bcc
fix(tests): Override PROXY_HOSTS setting for the ScrapeIqueryPagesTes…
ERosendo ccfcbd2
Merge branch 'main' into 4087-feat-link-sessions-to-proxy
ERosendo d1058d0
feat(settings): Removes EGRESS_PROXY_HOST env variable
ERosendo e34f3d5
feat(pacer): Adds dataclass for storing PACER session data
ERosendo 78dcb23
Merge branch 'main' into 4087-feat-link-sessions-to-proxy
ERosendo ea91f42
fix(corpus importer): Use correct parameter name for session data
ERosendo 6f31ed8
Merge branch 'main' into 4087-feat-link-sessions-to-proxy
ERosendo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You are using environment variables inside django app. Use
Ignore this finding from use-django-environ.django-environ
as it a better alternative for deployment.