From 2da1e650b0abb51a4ac4fa328c4b248096490ac4 Mon Sep 17 00:00:00 2001 From: Yuri Date: Mon, 18 Nov 2024 19:48:00 -0800 Subject: [PATCH] change delimeter for paused info search attribute (#6840) ## What changed? Change delimiter for pause info search attribute from "." to ": ## Why? This is what we agree on. --- service/history/workflow/mutable_state_impl.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/history/workflow/mutable_state_impl.go b/service/history/workflow/mutable_state_impl.go index 854b1a196b2..7c244293fa7 100644 --- a/service/history/workflow/mutable_state_impl.go +++ b/service/history/workflow/mutable_state_impl.go @@ -4990,7 +4990,7 @@ func (ms *MutableStateImpl) updatePauseInfoSearchAttribute() error { } pausedInfo := make([]string, 0, len(pausedInfoMap)) for activityType := range pausedInfoMap { - pausedInfo = append(pausedInfo, fmt.Sprintf("property.activityType=%s", activityType)) + pausedInfo = append(pausedInfo, fmt.Sprintf("property:activityType=%s", activityType)) } pauseInfoPayload, err := searchattribute.EncodeValue(pausedInfo, enumspb.INDEXED_VALUE_TYPE_KEYWORD_LIST)