From ee6e52340aa2aa651769221103efee70c098f122 Mon Sep 17 00:00:00 2001 From: DDEV User Date: Fri, 9 Aug 2024 16:23:46 +0000 Subject: [PATCH] Don't except. --- src/Drush/Commands/VerifyIdentifierLocationCommands.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Drush/Commands/VerifyIdentifierLocationCommands.php b/src/Drush/Commands/VerifyIdentifierLocationCommands.php index 117bfe9..9f68fd9 100644 --- a/src/Drush/Commands/VerifyIdentifierLocationCommands.php +++ b/src/Drush/Commands/VerifyIdentifierLocationCommands.php @@ -128,6 +128,7 @@ public function verifyBatch(IdentifierInterface $identifier, &$context): void { $identifier_location = $entity->get($identifier->getField())->getString(); $response = $this->httpClient->request('HEAD', $identifier_location, [ 'allow_redirects' => FALSE, + 'http_errors' => FALSE, ]); $location = $response->getHeaderLine('Location'); $expected_location = FALSE;