Only execute query in propagateChange once
The second execute statement should be inside the if block. Else it gets executed twice which makes no sense. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
parent
1e03397750
commit
f7a1ed8656
|
@ -97,10 +97,10 @@ class Propagator implements IPropagator {
|
||||||
->where($builder->expr()->eq('storage', $builder->createNamedParameter($storageId, IQueryBuilder::PARAM_INT)))
|
->where($builder->expr()->eq('storage', $builder->createNamedParameter($storageId, IQueryBuilder::PARAM_INT)))
|
||||||
->andWhere($builder->expr()->in('path_hash', $hashParams))
|
->andWhere($builder->expr()->in('path_hash', $hashParams))
|
||||||
->andWhere($builder->expr()->gt('size', $builder->expr()->literal(-1, IQueryBuilder::PARAM_INT)));
|
->andWhere($builder->expr()->gt('size', $builder->expr()->literal(-1, IQueryBuilder::PARAM_INT)));
|
||||||
}
|
|
||||||
|
|
||||||
$builder->execute();
|
$builder->execute();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
protected function getParents($path) {
|
protected function getParents($path) {
|
||||||
$parts = explode('/', $path);
|
$parts = explode('/', $path);
|
||||||
|
|
Loading…
Reference in New Issue