- Issue created by @kkalaskar
- First commit to issue fork.
- Merge request !19Issue #3418177 by s_leu, tim bozeman, ricovandevin, tostinni, ratanasdiabolo,... → (Open) created by abhiyanshu
When running the site, the following error occurs:
Error: Class 'Symfony\Component\Lock\Exception\LockAcquiringException' not found in Drupal\file_resup\Controller\UploadController->build()
This issue occurs after updating to Drupal 10.3 and happens when calling lockAcquire() in module.
Install module file_resup, s3fs .
Try to upload the file with file_resup.
Observe the error.
Use -
use Drupal\Core\Lock\LockAcquiringException;
instead
use Symfony\Component\Lock\Exception\LockAcquiringException;
OR
Active
2.0
Code