Skip to content

Commit e94efbb

Browse files
committed
update
1 parent 24d454e commit e94efbb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

service/worker/migration/activities.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ import (
3131
"sort"
3232
"time"
3333

34+
"github.com/pkg/errors"
3435
commonpb "go.temporal.io/api/common/v1"
3536
replicationpb "go.temporal.io/api/replication/v1"
3637
"go.temporal.io/api/serviceerror"
@@ -634,7 +635,8 @@ func (a *activities) verifyReplicationTasks(
634635
default:
635636
a.forceReplicationMetricsHandler.WithTags(metrics.NamespaceTag(request.Namespace), metrics.ServiceErrorTypeTag(err)).
636637
Counter(metrics.VerifyReplicationTaskFailed.GetMetricName()).Record(1)
637-
return false, progress, err
638+
639+
return false, progress, errors.WithMessage(err, "remoteClient.DescribeMutableState call failed")
638640
}
639641
}
640642

0 commit comments

Comments
 (0)