From 488f1841a67d8947e13260e0d5d5a678600e2625 Mon Sep 17 00:00:00 2001 From: Jordan Dukart Date: Mon, 19 Jul 2021 16:11:11 -0300 Subject: [PATCH] Remove dgi. --- src/MigrateBatchExecutable.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/MigrateBatchExecutable.php b/src/MigrateBatchExecutable.php index a1194da..a93edb9 100644 --- a/src/MigrateBatchExecutable.php +++ b/src/MigrateBatchExecutable.php @@ -29,7 +29,7 @@ class MigrateBatchExecutable extends MigrateExecutable { } // The name of our timer. - const TIMER = 'dgi_migrate_iteration_timer'; + const TIMER = 'idc_migrate_iteration_timer'; // The max amount of time we might want to allow per iteration. const MAX_TIME = 3600.0; @@ -47,7 +47,7 @@ class MigrateBatchExecutable extends MigrateExecutable { public function __construct(MigrationInterface $migration, MigrateMessageInterface $message, array $options = []) { parent::__construct($migration, $message, $options); - $queue_name = "dgi_migrate__batch_queue__{$migration->id()}"; + $queue_name = "idc_migrate__batch_queue__{$migration->id()}"; $this->queue = \Drupal::queue($queue_name, TRUE); if (static::isCli()) {