Merge pull request #1462 from stevvooe/fieldpath-fix

service/containers: correctly plumb fieldpaths
This commit is contained in:
Michael Crosby 2017-09-01 16:30:57 -04:00 committed by GitHub
commit 93395c0b1d

View File

@ -124,7 +124,7 @@ func (s *Service) Update(ctx context.Context, req *api.UpdateContainerRequest) (
} }
} }
updated, err := store.Update(ctx, container) updated, err := store.Update(ctx, container, fieldpaths...)
if err != nil { if err != nil {
return err return err
} }