diff --git a/client/history/client.go b/client/history/client.go index 5568bd6ba72..7d44b62b078 100644 --- a/client/history/client.go +++ b/client/history/client.go @@ -11,7 +11,7 @@ import ( "github.com/uber/tchannel-go/thrift" ) -const historyServiceName = "History" +const historyServiceName = "uber-minions-history" var _ Client = (*clientImpl)(nil) diff --git a/service/history/handler.go b/service/history/handler.go index 84d56506f48..f54e7c60c61 100644 --- a/service/history/handler.go +++ b/service/history/handler.go @@ -86,3 +86,9 @@ func (h *Handler) StartWorkflowExecution(ctx thrift.Context, RunId: wf.RunId, }, err } + +// GetWorkflowExecutionHistory - returns the complete history of a workflow execution +func (h *Handler) GetWorkflowExecutionHistory(ctx thrift.Context, + getRequest *gen.GetWorkflowExecutionHistoryRequest) (*gen.GetWorkflowExecutionHistoryResponse, error) { + return h.engine.GetWorkflowExecutionHistory(getRequest) +}