Draft
Conversation
…ployer Agent-Logs-Url: https://github.com/streamingfast/services-control-plane/sessions/e2009b19-c83e-4d5b-8f4c-a3dafd790fac Co-authored-by: billettc <16710840+billettc@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add user_id in DeploymentRequest
Add user_id to DeploymentRequest
Apr 28, 2026
Collaborator
|
pull develop branch so the ci is run again |
billettc
requested changes
Apr 28, 2026
Collaborator
billettc
left a comment
There was a problem hiding this comment.
pull develop branch the do the modification
| string name = 3; | ||
| sf.hosted.common.v1.DeploymentRequest deployment_request = 4; | ||
| string api_key = 5; | ||
| string user_id = 6; |
Collaborator
There was a problem hiding this comment.
make string user_id = 3
;
Author
There was a problem hiding this comment.
Done in d1ad074. user_id is now field 3, with name→4, deployment_request→5, api_key→6. Also merged the develop branch as requested.
…d-deployment-request Co-authored-by: billettc <16710840+billettc@users.noreply.github.com>
Agent-Logs-Url: https://github.com/streamingfast/services-control-plane/sessions/9fafab0a-050d-4d89-9692-e4a61f23be06 Co-authored-by: billettc <16710840+billettc@users.noreply.github.com>
Author
|
Just as a heads up, I was blocked by some firewall rules while working on your feedback. Expand below for details. |
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
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.
Adds
user_idtoDeploymentRequestso deployments can be attributed to a specific user end-to-end.Changes
proto-internal/.../service.proto): Addedstring user_id = 3toDeploymentRequest(shiftingname→4,deployment_request→5,api_key→6)pb/.../service.pb.go): Regenerated with new field andGetUserId()accessorgrpc/services/hosted.go): Logsuser_idon deploy request/completion; passes it to the deployerk8s/deployer/deployer.go): AddeduserIDparam toDeploysignaturek8s/deployer/sink_sql_from_proto.go): AcceptsuserIDand applies it as auser-idKubernetes label on the StatefulSet