Skip to content

Commit de0c67a

Browse files
committed
make proto
1 parent 1708022 commit de0c67a

File tree

6 files changed

+12
-11
lines changed

6 files changed

+12
-11
lines changed

api/workflow/v1/message.pb.go

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

common/worker_versioning/worker_versioning.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ package worker_versioning
33
import (
44
"context"
55
"fmt"
6-
"go.temporal.io/server/api/matchingservice/v1"
7-
"go.temporal.io/server/common/resource"
8-
"google.golang.org/protobuf/proto"
96
"math"
107
"math/rand"
118
"strings"
@@ -18,12 +15,15 @@ import (
1815
"go.temporal.io/api/serviceerror"
1916
workflowpb "go.temporal.io/api/workflow/v1"
2017
deploymentspb "go.temporal.io/server/api/deployment/v1"
18+
"go.temporal.io/server/api/matchingservice/v1"
2119
persistencespb "go.temporal.io/server/api/persistence/v1"
2220
taskqueuespb "go.temporal.io/server/api/taskqueue/v1"
2321
"go.temporal.io/server/common/namespace"
2422
"go.temporal.io/server/common/persistence/visibility/manager"
23+
"go.temporal.io/server/common/resource"
2524
"go.temporal.io/server/common/searchattribute"
2625
serviceerrors "go.temporal.io/server/common/serviceerror"
26+
"google.golang.org/protobuf/proto"
2727
"google.golang.org/protobuf/types/known/emptypb"
2828
)
2929

proto/internal/temporal/server/api/workflow/v1/message.proto

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@ message ParentExecutionInfo {
2020
// first starts the child workflow, and the child workflow is starting on a Task Queue belonging
2121
// to the same Worker Deployment Version.
2222
// Not set in the subsequent execution if the child workflow continues-as-new.
23-
// Deprecated. Replaced with `parent_versioning_info` in WorkflowExecutionStartedEventAttributes.
23+
// Deprecated. Replaced with `inherited_pinned_version` in WorkflowExecutionStartedEventAttributes.
2424
string pinned_worker_deployment_version = 7;
25+
reserved 8;
2526
}
2627

2728
message RootExecutionInfo {

service/history/api/respondworkflowtaskcompleted/api.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ package respondworkflowtaskcompleted
22

33
import (
44
"context"
5-
"go.temporal.io/server/common/resource"
65

76
commonpb "go.temporal.io/api/common/v1"
87
enumspb "go.temporal.io/api/enums/v1"
@@ -29,6 +28,7 @@ import (
2928
"go.temporal.io/server/common/payloads"
3029
"go.temporal.io/server/common/persistence"
3130
"go.temporal.io/server/common/persistence/visibility/manager"
31+
"go.temporal.io/server/common/resource"
3232
"go.temporal.io/server/common/searchattribute"
3333
"go.temporal.io/server/common/tasktoken"
3434
"go.temporal.io/server/service/history/api"

service/history/api/respondworkflowtaskcompleted/workflow_task_completed_handler.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ import (
44
"context"
55
"errors"
66
"fmt"
7-
"go.temporal.io/server/common/resource"
8-
"go.temporal.io/server/common/worker_versioning"
97
"time"
108

119
"github.com/pborman/uuid"
@@ -31,8 +29,10 @@ import (
3129
"go.temporal.io/server/common/payload"
3230
"go.temporal.io/server/common/payloads"
3331
"go.temporal.io/server/common/protocol"
32+
"go.temporal.io/server/common/resource"
3433
"go.temporal.io/server/common/searchattribute"
3534
"go.temporal.io/server/common/tasktoken"
35+
"go.temporal.io/server/common/worker_versioning"
3636
"go.temporal.io/server/service/history/api"
3737
"go.temporal.io/server/service/history/configs"
3838
historyi "go.temporal.io/server/service/history/interfaces"

service/history/interfaces/mutable_state.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ package interfaces
44

55
import (
66
"context"
7-
"go.temporal.io/server/common/worker_versioning"
87
"time"
98

109
commandpb "go.temporal.io/api/command/v1"
@@ -27,6 +26,7 @@ import (
2726
"go.temporal.io/server/common/definition"
2827
"go.temporal.io/server/common/namespace"
2928
"go.temporal.io/server/common/persistence"
29+
"go.temporal.io/server/common/worker_versioning"
3030
"go.temporal.io/server/service/history/historybuilder"
3131
"go.temporal.io/server/service/history/hsm"
3232
"go.temporal.io/server/service/history/tasks"

0 commit comments

Comments
 (0)