parent
01a80c2da8
commit
693b8fe317
|
@ -16,6 +16,7 @@ v1.10.2 (unreleased)
|
||||||
|
|
||||||
### Import and Sync
|
### Import and Sync
|
||||||
* FIX: triggering Sync manually produced an error on PostgreSQL (#2636)
|
* FIX: triggering Sync manually produced an error on PostgreSQL (#2636)
|
||||||
|
* FIX: purge stopped working for objects with uppercase characters (#2627)
|
||||||
|
|
||||||
### Configuration Baskets
|
### Configuration Baskets
|
||||||
* FEATURE: more details shown in error messages related to invalid characters (#2646)
|
* FEATURE: more details shown in error messages related to invalid characters (#2646)
|
||||||
|
|
|
@ -690,6 +690,7 @@ class Sync
|
||||||
$noAction = [];
|
$noAction = [];
|
||||||
$purgeAction = $this->rule->get('purge_action');
|
$purgeAction = $this->rule->get('purge_action');
|
||||||
foreach ($this->rule->purgeStrategy()->listObjectsToPurge() as $key) {
|
foreach ($this->rule->purgeStrategy()->listObjectsToPurge() as $key) {
|
||||||
|
$key = strtolower($key);
|
||||||
if (array_key_exists($key, $newObjects)) {
|
if (array_key_exists($key, $newObjects)) {
|
||||||
// Object has been touched, do not delete
|
// Object has been touched, do not delete
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in New Issue