You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore: remove EXPERIMENTAL labels from config subcommands
The config global flags had their experimental labels removed in #972,
but the config subcommands (set, get, delete, delete-profile, list)
still had them. This aligns the subcommands with the flags.
s.Command.Long="Config files are TOML files that contain profiles, with each profile\ncontaining configuration for connecting to Temporal.\n\n\x1b[1mtemporal config set \\\n --prop address \\\n --value us-west-2.aws.api.temporal.io:7233\x1b[0m\n\nThe default config file path is \x1b[1m$CONFIG_PATH/temporalio/temporal.toml\x1b[0m where\n\x1b[1m$CONFIG_PATH\x1b[0m is defined as \x1b[1m$HOME/.config\x1b[0m on Unix,\n\x1b[1m$HOME/Library/Application Support\x1b[0m on macOS, and \x1b[1m%AppData%\x1b[0m on Windows.\nThis can be overridden with the \x1b[1mTEMPORAL_CONFIG_FILE\x1b[0m environment\nvariable or \x1b[1m--config-file\x1b[0m.\n\nThe default profile is \x1b[1mdefault\x1b[0m. This can be overridden with the\n\x1b[1mTEMPORAL_PROFILE\x1b[0m environment variable or \x1b[1m--profile\x1b[0m."
s.Command.Short="Delete an entire config profile (EXPERIMENTAL)\n"
1143
+
s.Command.Short="Delete an entire config profile\n"
1144
1144
ifhasHighlighting {
1145
1145
s.Command.Long="Remove a full profile entirely. The \x1b[1m--profile\x1b[0m must be set explicitly.\n\n\x1b[1mtemporal config delete-profile \\\n --profile my-profile\x1b[0m"
s.Command.Long="Display specific properties or the entire profile.\n\n\x1b[1mtemporal config get \\\n --prop address\x1b[0m\n\nor\n\n\x1b[1mtemporal config get\x1b[0m"
s.Command.Long="Assign a value to a property and store it in the config file:\n\n\x1b[1mtemporal config set \\\n --prop address \\\n --value us-west-2.aws.api.temporal.io:7233\x1b[0m"
0 commit comments