aboutsummaryrefslogtreecommitdiff
path: root/ref/store/files/batch_apply.go
diff options
context:
space:
mode:
Diffstat (limited to 'ref/store/files/batch_apply.go')
-rw-r--r--ref/store/files/batch_apply.go8
1 files changed, 0 insertions, 8 deletions
diff --git a/ref/store/files/batch_apply.go b/ref/store/files/batch_apply.go
index b4be9079..1847b544 100644
--- a/ref/store/files/batch_apply.go
+++ b/ref/store/files/batch_apply.go
@@ -13,14 +13,6 @@ func (batch *Batch) Apply() ([]refstore.BatchResult, error) {
for i, op := range batch.ops {
results[i].Name = op.name
- err := executor.validateQueuedUpdate(op)
- if err != nil {
- results[i].Status = refstore.BatchStatusRejected
- results[i].Error = batchResultError(err)
-
- continue
- }
-
target, err := executor.resolveQueuedUpdateTarget(op)
if err != nil {
if isBatchRejected(err) {