diff --git a/src/QueueWorker.php b/src/QueueWorker.php
index 4197da2..d5a819e 100644
--- a/src/QueueWorker.php
+++ b/src/QueueWorker.php
@@ -7,8 +7,6 @@ use Drupal\Core\Queue\QueueFactory;
 use Drupal\Core\Config\ConfigFactory;
 use Drupal\Core\Queue\RequeueException;
 use Drupal\Core\Queue\SuspendQueueException;
-use Drupal\Core\Queue\DelayableQueueInterface;
-use Drupal\Core\Queue\DelayedRequeueException;
 
 /**
  * Defines the queue worker.
@@ -116,13 +114,6 @@ class QueueWorker {
         // The worker requested the task be immediately requeued.
         $queue->releaseItem($item);
       }
-      catch (DelayedRequeueException $e) {
-        if ($queue instanceof DelayableQueueInterface) {
-          // This queue can handle a custom delay; use the duration provided
-          // by the exception.
-          $queue->delayItem($item, $e->getDelay());
-        }
-      }
       catch (SuspendQueueException $e) {
         // If the worker indicates there is a problem with the whole queue,
         // release the item and skip to the next queue.
