-
-
Notifications
You must be signed in to change notification settings - Fork 5
feat(taskbroker): Add Push Mode to Taskbroker #573
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
Open
james-mcnulty
wants to merge
17
commits into
main
Choose a base branch
from
george/push-taskbroker/add-push-mode
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
1fb5dfa
Add Push Mode (Task Dispatchers and Pushers)
james-mcnulty a728613
Add Unit Tests, Flush Tasks on Shutdown
james-mcnulty 6866ef2
Switch to Sentry Protos Release
james-mcnulty 0a53d58
Replace Dispatcher w/Separate Fetch and Push Pools
james-mcnulty 043559a
Initialize gRPC Server w/`0.0.0.0`
james-mcnulty f70cc3a
Add `PushPool` Unit Tests
james-mcnulty dafa06c
Add `FetchPool` Unit Tests
james-mcnulty e47a1e8
Fix Linting
james-mcnulty cb47f99
Address PR Comments (Fix Bugs, Make More Robust)
james-mcnulty aa055bc
Move Tasks Back to Pending on Push Failure, Add Server Unit Test for …
james-mcnulty 2f540ad
Make Empty Store Backoff Configurable, Other Fixes and Tests
james-mcnulty 97f00b0
Return Error from `fetch_activation` on Submit Failure
james-mcnulty 6db46a0
Fix Fetch Unit Tests
james-mcnulty cf06e6b
Don't Use `FetchNextTask` When in Push Mode
james-mcnulty d28397d
Do Not Reset Task Status on Push Failure
james-mcnulty d42ffb5
Change Push Mode Config Name, Rename Helpers Module
james-mcnulty 90825d4
Add Application and Namespace Filters to Config
james-mcnulty 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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.
Why did this change?
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.
It's
make unit-test, notmake test- that doesn't do anything right now.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.
Or rather, there is no
testtarget in the Makefile for doing both unit and integration tests, which seemed to be the intention here.