workflow_handler.go ×9

Frontier kind: Code frontier

unlabeled · c_e7be2c0f5ef7

8 tests · 3966 LOC · 201 files · introduces 0 tests · 26 LOC · 2 files

Introduces — evidence that enters the hierarchy at this concept

Code
10 ranges26 lines · 2 files
Tests
0 tests

Contains — complete concept membership

All code (extent)
613 ranges3966 lines · 201 files · Browse complete extent
All tests (intent)
8 testsBrowse complete intent

Neighbourhood graph

The orange circle is the focus. Violet and green circles are every ancestor and descendant, broader and narrower, at any distance; blue squares and pink diamonds are the introduced files and exact introduced tests of every visible concept, not only the focus's. Arrows point from broader to narrower concepts and bridge only concepts omitted from this view. Undirected links show source or test introduction. Concept and file size follows LOC; exact test nodes use test-count units.

Introduced files, introduced tests, and structurally relevant concept specialization

In the embedded map, ordinary wheel input scrolls the page; use the visible controls to zoom and drag to pan. Open the full-screen map for canvas navigation: wheel pans, Ctrl/Command plus wheel zooms, and arrow keys pan when this region is focused. On touch screens, open the full-screen map to pan or pinch. If JavaScript or WebGL is unavailable, use the native relationship evidence on this page.

Graph controls are ready.

Interactive rendering requires JavaScript and WebGL. Use the native relationship evidence on this page while the interactive map is unavailable.

Native relationship evidence

Every exact file and test below is linked only from the concept that introduces it.

Introduced tests

Every collected test enters the hierarchy at exactly one concept.

No tests are introduced at this concept. Its intent tests are introduced by other concepts.

Introduced code

Every collected source range enters the hierarchy at exactly one concept.

2 files ranked by introduced lines: 26 introduced LOC across 10 ranges. Expand a file to inspect source; the > gutter marks introduced lines.

go.temporal.io/server/service/frontend/workflow_handler.go 22 introduced LOC · 9 ranges

Open complete file

884 return nil, "", err
885 }
886 > if updateReq.FirstExecutionRunId != "" { workflow_handler.go
887 return nil, "", errMultiOpUpdateFirstExecutionRunId
888 }
889 > if updateReq.WorkflowExecution.RunId != "" { workflow_handler.go
890 return nil, "", errMultiOpUpdateExecutionRunId
891 }
892
893 > workflowId = updateReq.WorkflowExecution.WorkflowId workflow_handler.go
894 > opReq = &historyservice.ExecuteMultiOperationRequest_Operation{
895 > Operation: &historyservice.ExecuteMultiOperationRequest_Operation_UpdateWorkflow{
896 > UpdateWorkflow: &historyservice.UpdateWorkflowExecutionRequest{
897 > NamespaceId: namespaceID.String(),
898 > Request: updateReq,
899 > },
900 > },
901 > }
902 } else {
903 return nil, "", serviceerror.NewInternalf("unsupported operation: %T", op.Operation)
5425 }
5426
5427 > if request.GetRequest().GetInput().GetName() == "" { workflow_handler.go
5428 return errUpdateNameNotSet
5429 }
5430
5431 > if request.GetWaitPolicy() == nil { workflow_handler.go
5432 > request.WaitPolicy = &updatepb.WaitPolicy{}
5433 > }
5434
5435 > if !wh.config.EnableUpdateWorkflowExecution(request.Namespace) { workflow_handler.go
5436 return errUpdateWorkflowExecutionAPINotAllowed
5437 }
5438
5439 > enums.SetDefaultUpdateWorkflowExecutionLifecycleStage(&request.GetWaitPolicy().LifecycleStage) workflow_handler.go
5440 >
5441 > if request.WaitPolicy.LifecycleStage == enumspb.UPDATE_WORKFLOW_EXECUTION_LIFECYCLE_STAGE_ADMITTED {
5442 return errUpdateWorkflowExecutionAsyncAdmittedNotAllowed
5443 }
5444
5445 > if request.WaitPolicy.LifecycleStage == enumspb.UPDATE_WORKFLOW_EXECUTION_LIFECYCLE_STAGE_ACCEPTED && workflow_handler.go
5446 > !wh.config.EnableUpdateWorkflowExecutionAsyncAccepted(request.Namespace) {
5447 return errUpdateWorkflowExecutionAsyncAcceptedNotAllowed
5448 }
5449
5450 > return nil workflow_handler.go
5451 }
5452
go.temporal.io/server/common/enums/defaults.go 4 introduced LOC · 1 range

Open complete file

69 }
70
71 > func SetDefaultUpdateWorkflowExecutionLifecycleStage(f *enumspb.UpdateWorkflowExecutionLifecycleStage) { defaults.go
72 > if *f == enumspb.UPDATE_WORKFLOW_EXECUTION_LIFECYCLE_STAGE_UNSPECIFIED {
73 > *f = enumspb.UPDATE_WORKFLOW_EXECUTION_LIFECYCLE_STAGE_COMPLETED
74 > }
75 }