File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed
temporal/api/cloud/namespace/v1 Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 1- v0.5.0
1+ v0.5.1
Original file line number Diff line number Diff line change @@ -63,6 +63,21 @@ message CodecServerSpec {
6363 bool pass_access_token = 2 ;
6464 // Whether to include cross-origin credentials.
6565 bool include_cross_origin_credentials = 3 ;
66+ // A custom error message to display for remote codec server errors.
67+ // temporal:versioning:min_version=v0.5.1
68+ CustomErrorMessage custom_error_message = 4 ;
69+
70+ message CustomErrorMessage {
71+ // The error message to display by default for any remote codec server errors.
72+ ErrorMessage default = 1 ;
73+
74+ message ErrorMessage {
75+ // A message to display.
76+ string message = 1 ;
77+ // A link that is displayed along side the configured message.
78+ string link = 2 ;
79+ }
80+ }
6681}
6782
6883message LifecycleSpec {
You can’t perform that action at this time.
0 commit comments