💥 activity describe: return full DescribeActivityExecutionResponse#1128
Open
dandavison wants to merge 1 commit into
Open
💥 activity describe: return full DescribeActivityExecutionResponse#1128dandavison wants to merge 1 commit into
dandavison wants to merge 1 commit into
Conversation
`temporal activity describe` printed only the nested ActivityExecutionInfo (via the SDK's handle.Describe, which discards the rest of the response), so the response-level fields — run_id, callbacks, long_poll_token, input/outcome — were unreachable. This diverged from `temporal workflow describe`, which prints the whole DescribeWorkflowExecutionResponse. Call DescribeActivityExecution directly (like the other activity subcommands already do) and print the full response: JSON/raw now carry callbacks and the info nests under "info"; text mode adds a Callbacks section. IncludeLastFailure is now set so LastFailure actually populates. Run tests: go test ./internal/temporalcli/ -run 'TestSharedServerSuite/TestActivity_Describe'
chaptersix
approved these changes
Jul 15, 2026
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.
What changed?
Change
temporal activity describeto output the entireDescribeWorkflowExecutionResponseWhy
temporal activity describeprinted only the nested ActivityExecutionInfo. This was different fromtemporal workflow describe, which prints the whole DescribeWorkflowExecutionResponse.Checklist
Stability
non-GA API
Tests
Manual tests
Happy path
Setup
SAA workfload
Error case
I verified that no callback info is emitted when the activity has no callback:
The text version doesn't print out the
Callbacks:header.