From 8bdf02e553c59482b207febe9024a2457e104d4f Mon Sep 17 00:00:00 2001 From: Quinn Klassen Date: Fri, 10 Jul 2026 07:13:55 -0700 Subject: [PATCH] Fix SANO operation list description Use the proper name for the SA NexusEndpoint -> Endpoint. --- internal/temporalcli/commands.gen.go | 8 ++++---- internal/temporalcli/commands.yaml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/internal/temporalcli/commands.gen.go b/internal/temporalcli/commands.gen.go index 6fcf8bb1a..16e075dc6 100644 --- a/internal/temporalcli/commands.gen.go +++ b/internal/temporalcli/commands.gen.go @@ -1513,9 +1513,9 @@ func NewTemporalNexusOperationCountCommand(cctx *CommandContext, parent *Tempora s.Command.Use = "count [flags]" s.Command.Short = "Count Nexus Operations matching a query (Experimental)" if hasHighlighting { - s.Command.Long = "Return a count of Nexus Operations. Use \x1b[1m--query\x1b[0m\nto filter the operations to be counted.\n\n\x1b[1mtemporal nexus operation count \\\n --query 'NexusEndpoint=\"YourEndpoint\"'\x1b[0m\n\nVisit https://docs.temporal.io/visibility to read more about\nSearch Attributes and queries." + s.Command.Long = "Return a count of Nexus Operations. Use \x1b[1m--query\x1b[0m\nto filter the operations to be counted.\n\n\x1b[1mtemporal nexus operation count \\\n --query 'Endpoint=\"YourEndpoint\"'\x1b[0m\n\nVisit https://docs.temporal.io/visibility to read more about\nSearch Attributes and queries." } else { - s.Command.Long = "Return a count of Nexus Operations. Use `--query`\nto filter the operations to be counted.\n\n```\ntemporal nexus operation count \\\n --query 'NexusEndpoint=\"YourEndpoint\"'\n```\n\nVisit https://docs.temporal.io/visibility to read more about\nSearch Attributes and queries." + s.Command.Long = "Return a count of Nexus Operations. Use `--query`\nto filter the operations to be counted.\n\n```\ntemporal nexus operation count \\\n --query 'Endpoint=\"YourEndpoint\"'\n```\n\nVisit https://docs.temporal.io/visibility to read more about\nSearch Attributes and queries." } s.Command.Args = cobra.NoArgs s.Command.Flags().StringVarP(&s.Query, "query", "q", "", "Query to filter Nexus Operation Executions to count.") @@ -1600,9 +1600,9 @@ func NewTemporalNexusOperationListCommand(cctx *CommandContext, parent *Temporal s.Command.Use = "list [flags]" s.Command.Short = "List Nexus Operations matching a query (Experimental)" if hasHighlighting { - s.Command.Long = "List Nexus Operations. Use \x1b[1m--query\x1b[0m to filter results.\n\n\x1b[1mtemporal nexus operation list \\\n --query 'NexusEndpoint=\"YourEndpoint\"'\x1b[0m\n\nVisit https://docs.temporal.io/visibility to read more about\nSearch Attributes and queries." + s.Command.Long = "List Nexus Operations. Use \x1b[1m--query\x1b[0m to filter results.\n\n\x1b[1mtemporal nexus operation list \\\n --query 'Endpoint=\"YourEndpoint\"'\x1b[0m\n\nVisit https://docs.temporal.io/visibility to read more about\nSearch Attributes and queries." } else { - s.Command.Long = "List Nexus Operations. Use `--query` to filter results.\n\n```\ntemporal nexus operation list \\\n --query 'NexusEndpoint=\"YourEndpoint\"'\n```\n\nVisit https://docs.temporal.io/visibility to read more about\nSearch Attributes and queries." + s.Command.Long = "List Nexus Operations. Use `--query` to filter results.\n\n```\ntemporal nexus operation list \\\n --query 'Endpoint=\"YourEndpoint\"'\n```\n\nVisit https://docs.temporal.io/visibility to read more about\nSearch Attributes and queries." } s.Command.Args = cobra.NoArgs s.Command.Flags().StringVarP(&s.Query, "query", "q", "", "Query to filter the Nexus Operation Executions to list.") diff --git a/internal/temporalcli/commands.yaml b/internal/temporalcli/commands.yaml index ac166de20..9127c5f92 100644 --- a/internal/temporalcli/commands.yaml +++ b/internal/temporalcli/commands.yaml @@ -1842,7 +1842,7 @@ commands: ``` temporal nexus operation list \ - --query 'NexusEndpoint="YourEndpoint"' + --query 'Endpoint="YourEndpoint"' ``` Visit https://docs.temporal.io/visibility to read more about @@ -1871,7 +1871,7 @@ commands: ``` temporal nexus operation count \ - --query 'NexusEndpoint="YourEndpoint"' + --query 'Endpoint="YourEndpoint"' ``` Visit https://docs.temporal.io/visibility to read more about