-
-
Notifications
You must be signed in to change notification settings - Fork 0
Call new endpoints #102
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
Merged
Merged
Call new endpoints #102
Conversation
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
f526e1c
to
191ab4e
Compare
c769652
to
7905d2f
Compare
This stack of pull requests is managed by Graphite. Learn more about stacking. |
7905d2f
to
d19e36d
Compare
d19e36d
to
4629fc5
Compare
e33a9be
to
60e1f4e
Compare
4629fc5
to
85325d8
Compare
trevor-e
approved these changes
Jul 1, 2025
85325d8
to
9bbb566
Compare
60e1f4e
to
a27334b
Compare
9bbb566
to
3f4fce5
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Add endpoint calling interface. The test scripts are just temporary references for now. Once my kafka PRs land, we can do this on the latest main branches of the two projects:
make reset-db
in sentry dir for a clean slatesentry devserver --workers
http://127.0.0.1:8000/settings/sentry/auth-tokens
and create an auth token.make serve
to ensure the launchpad server is also running locally./target/release/sentry-cli --log-level=debug --auth-token {your_auth_token} mobile-app upload {any_apk_or_xcarchive} --org sentry --project internal
. This should successfully upload the artifact to your local sentry instance. You can check in your local postgres: there should now be a row in the PreprodArtifact andsentry_file
tablesStep #4 will also submit a kafka message which will then trigger the processing task in launchpad.
My next PR will wire up the processing task to include the network calls back to the monolith
For now we can test these endpoints with the make commands I've added
note: we've updated the sentry's devservices config so technically you can also now run launchpad as a dependency of sentry by running
devservices up --mode launchpad
in the sentry repo