Add annotations to task update request api

Signed-off-by: Kathryn Baldauf <kabaldau@microsoft.com>
This commit is contained in:
Kathryn Baldauf
2020-10-22 15:35:09 -07:00
parent ba8377590d
commit 95ba6e9f75
11 changed files with 566 additions and 179 deletions

View File

@@ -560,7 +560,7 @@ func (l *local) Update(ctx context.Context, r *api.UpdateTaskRequest, _ ...grpc.
if err != nil {
return nil, err
}
if err := t.Update(ctx, r.Resources); err != nil {
if err := t.Update(ctx, r.Resources, r.Annotations); err != nil {
return nil, errdefs.ToGRPC(err)
}
return empty, nil