Browse Source

bugfix: StartAction responds with used tracking ID, not necessarily the requested tracking ID

jamesread 2 years ago
parent
commit
27ab530ba6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      internal/grpcapi/grpcApi.go

+ 1 - 1
internal/grpcapi/grpcApi.go

@@ -51,7 +51,7 @@ func (api *oliveTinAPI) StartAction(ctx ctx.Context, req *pb.StartActionRequest)
 	api.executor.ExecRequest(&execReq)
 
 	return &pb.StartActionResponse{
-		ExecutionTrackingId: req.UniqueTrackingId,
+		ExecutionTrackingId: execReq.TrackingID,
 	}, nil
 }