Skip to content
Snippets Groups Projects

Issue #3198608: track_last_imported configuration not supported

1 file
+ 4
0
Compare changes
  • Side-by-side
  • Inline
@@ -199,6 +199,10 @@ public function __construct(array $configuration, $plugin_id, $plugin_definition
$this->$property = (bool) $configuration[$config_key];
}
}
if (isset($configuration['track_last_imported'])) {
$migration->setTrackLastImported((bool) $configuration['track_last_imported']);
}
$this->cacheKey = !empty($configuration['cache_key']) ? $configuration['cache_key'] : NULL;
$this->idMap = $this->migration->getIdMap();
$this->highWaterProperty = !empty($configuration['high_water_property']) ? $configuration['high_water_property'] : FALSE;
Loading