Skip to content

Commit a1d05a6

Browse files
authoredAug 6, 2024··
WorkerTuner & Resource based autotuning (#1546)
1 parent 9b9201f commit a1d05a6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+2702
-465
lines changed
 

‎CONTRIBUTING.md

+9
Original file line numberDiff line numberDiff line change
@@ -66,3 +66,12 @@ Run the unit tests:
6666
cd ./internal/cmd/build
6767
go run . unit-test
6868
```
69+
70+
## Updating go mod files
71+
72+
Sometimes all go.mod files need to be tidied. For an easy way to do this on linux or (probably) mac,
73+
run:
74+
75+
```bash
76+
find . -name go.mod -execdir go mod tidy \;
77+
```

‎client/client.go

+5-4
Original file line numberDiff line numberDiff line change
@@ -480,8 +480,9 @@ type (
480480
// Client is the client for starting and getting information about a workflow executions as well as
481481
// completing activities asynchronously.
482482
Client interface {
483-
// ExecuteWorkflow starts a workflow execution and return a WorkflowRun instance and error
484-
// The user can use this to start using a function or workflow type name.
483+
// ExecuteWorkflow starts a workflow execution and returns a WorkflowRun instance or error
484+
//
485+
// This can be used to start a workflow using a function reference or workflow type name.
485486
// Either by
486487
// ExecuteWorkflow(ctx, options, "workflowTypeName", arg1, arg2, arg3)
487488
// or
@@ -498,8 +499,8 @@ type (
498499
// - Get(ctx context.Context, valuePtr interface{}) error: which will fill the workflow
499500
// execution result to valuePtr, if workflow execution is a success, or return corresponding
500501
// error. This is a blocking API.
501-
// NOTE: if the started workflow return ContinueAsNewError during the workflow execution, the
502-
// return result of GetRunID() will be the started workflow run ID, not the new run ID caused by ContinueAsNewError,
502+
// NOTE: if the started workflow returns ContinueAsNewError during the workflow execution, the
503+
// returned result of GetRunID() will be the started workflow run ID, not the new run ID caused by ContinueAsNewError,
503504
// however, Get(ctx context.Context, valuePtr interface{}) will return result from the run which did not return ContinueAsNewError.
504505
// Say ExecuteWorkflow started a workflow, in its first run, has run ID "run ID 1", and returned ContinueAsNewError,
505506
// the second run has run ID "run ID 2" and return some result other than ContinueAsNewError:

0 commit comments

Comments
 (0)
Please sign in to comment.