diff --git a/test/integration_test.go b/test/integration_test.go index 67971e1d4..7669b93be 100644 --- a/test/integration_test.go +++ b/test/integration_test.go @@ -287,8 +287,6 @@ func (ts *IntegrationTestSuite) TestBasic() { err := ts.executeWorkflow("test-basic", ts.workflows.Basic, &expected) ts.NoError(err) ts.EqualValues(expected, ts.activities.invoked()) - // See https://grokbase.com/p/gg/golang-nuts/153jjj8dgg/go-nuts-fm-suffix-in-function-name-what-does-it-mean - // for explanation of -fm postfix. ts.Equal([]string{"Go", "ExecuteWorkflow begin", "ExecuteActivity", "ExecuteActivity", "ExecuteWorkflow end"}, ts.tracer.GetTrace("Basic")) diff --git a/worker/worker.go b/worker/worker.go index 35ed1422a..01dc27995 100644 --- a/worker/worker.go +++ b/worker/worker.go @@ -182,7 +182,7 @@ type ( // ReplayWorkflowHistoryFromJSONFile executes a single workflow task for the json history file downloaded from the cli. // To download the history file: temporal workflow show --workflow-id --output json > - // See https://github.com/temporalio/temporal/blob/master/tools/cli/README.md for full documentation + // See https://docs.temporal.io/cli and https://github.com/temporalio/cli for full documentation. // Use for testing the backwards compatibility of code changes and troubleshooting workflows in a debugger. // The logger is an optional parameter. Defaults to the noop logger. ReplayWorkflowHistoryFromJSONFile(logger log.Logger, jsonfileName string) error @@ -190,7 +190,7 @@ type ( // ReplayPartialWorkflowHistoryFromJSONFile executes a single workflow task for the json history file upto provided // lastEventID(inclusive), downloaded from the cli. // To download the history file: temporal workflow show --workflow-id --output json > - // See https://github.com/temporalio/temporal/blob/master/tools/cli/README.md for full documentation + // See https://docs.temporal.io/cli and https://github.com/temporalio/cli for full documentation. // Use for testing the backwards compatibility of code changes and troubleshooting workflows in a debugger. // The logger is an optional parameter. Defaults to the noop logger. ReplayPartialWorkflowHistoryFromJSONFile(logger log.Logger, jsonfileName string, lastEventID int64) error