http://51.159.55.97:8081/login/robots.txt?url=login%2Frobots.txt

Exceptions

An exception occurred while executing 'INSERT INTO Paa_Securite.adressesIP (iid_adresseIP, ip, tbanissement, bAuMoinsUneAuthentificationReussie) VALUES (?, ?, ?, ?)' with params [4101, "107.150.105.5", null, null]:

SQLSTATE[23505]: Unique violation: 7 ERROR: duplicate key value violates unique constraint "un_adressesip_ip"
DETAIL: Key (ip)=(107.150.105.5) already exists.

Exceptions 3

Doctrine\DBAL\Exception\ UniqueConstraintViolationException

  1.             case '23503':
  2.                 return new Exception\ForeignKeyConstraintViolationException($message$exception);
  3.             case '23505':
  4.                 return new Exception\UniqueConstraintViolationException($message$exception);
  5.             case '42601':
  6.                 return new Exception\SyntaxErrorException($message$exception);
  7.             case '42702':
  1.     {
  2.         if ($driverEx instanceof DriverException) {
  3.             return $driverEx;
  4.         }
  5.         if ($driver instanceof ExceptionConverterDriver && $driverEx instanceof DriverExceptionInterface) {
  6.             return $driver->convertException($msg$driverEx);
  7.         }
  8.         return new self($msg0$driverEx);
  9.     }
  1.         if ($params) {
  2.             $msg .= ' with params ' self::formatParameters($params);
  3.         }
  4.         $msg .= ":\n\n" $driverEx->getMessage();
  5.         return static::wrapException($driver$driverEx$msg);
  6.     }
  7.     /**
  8.      * @param Exception $driverEx
  9.      *
in vendor/doctrine/dbal/lib/Doctrine/DBAL/Statement.php::driverExceptionDuringQuery (line 162)
  1.             }
  2.             throw DBALException::driverExceptionDuringQuery(
  3.                 $this->conn->getDriver(),
  4.                 $ex,
  5.                 $this->sql,
  6.                 $this->conn->resolveParams($this->params$this->types)
  7.             );
  8.         }
  9.         if ($logger) {
  10.             $logger->stopQuery();
  1.                 foreach ($insertData[$tableName] as $column => $value) {
  2.                     $stmt->bindValue($paramIndex++, $value$this->columnTypes[$column]);
  3.                 }
  4.             }
  5.             $stmt->execute();
  6.             if ($isPostInsertId) {
  7.                 $generatedId $idGenerator->generate($this->em$entity);
  8.                 $id = [
  9.                     $this->class->identifier[0] => $generatedId
  1.             if ($invoke !== ListenersInvoker::INVOKE_NONE) {
  2.                 $entities[] = $entity;
  3.             }
  4.         }
  5.         $postInsertIds $persister->executeInserts();
  6.         if ($postInsertIds) {
  7.             // Persister returned post-insert IDs
  8.             foreach ($postInsertIds as $postInsertId) {
  9.                 $idField $class->getSingleIdentifierFieldName();
  1.                 }
  2.             }
  3.             if ($this->entityInsertions) {
  4.                 foreach ($commitOrder as $class) {
  5.                     $this->executeInserts($class);
  6.                 }
  7.             }
  8.             if ($this->entityUpdates) {
  9.                 foreach ($commitOrder as $class) {
  1.             );
  2.         }
  3.         $this->errorIfClosed();
  4.         $this->unitOfWork->commit($entity);
  5.     }
  6.     /**
  7.      * Finds an Entity by its identifier.
  8.      *
EntityManager->flush() in src/Event/ForceBruteListener.php (line 96)
  1.         $loEvenement->setTEvenement(new DateTime()) ;
  2.         $loEvenement->setITypeEvenement($loRepo::TYPE_ROUTENOTFOUND) ;
  3.         $loEvenement->setCDescEvenement($request->getRequestUri()) ;
  4.         $this->entityManager->persist($loEvenement) ;
  5.         $this->entityManager->flush() ;
  6.         $lbBanni $loRepo->updateABannir($loAdresseIP) ;
  7.         if ($lbBanni) {
  8.             // Cette adresse est bannie
  1.         $this->called true;
  2.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  3.         $e $this->stopwatch->start($this->name'event_listener');
  4.         ($this->listener)($event$eventName$dispatcher);
  5.         if ($e->isStarted()) {
  6.             $e->stop();
  7.         }
  1.     protected function doDispatch($listeners$eventNameEvent $event) {
  2.         foreach ($listeners as $listener) {
  3.             if ($event->isPropagationStopped()) {
  4.                 break;
  5.             }
  6.             $listener($event$eventName$this);
  7.         }
  8.     }
  9.     /**
  10.      * Sorts the internal list of listeners for the given event by priority.
  1.         if (null === $event) {
  2.             $event = new Event();
  3.         }
  4.         if ($listeners $this->getListeners($eventName)) {
  5.             $this->doDispatch($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         try {
  2.             $this->preDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($eventName$event);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.      *
  2.      * @throws \Exception
  3.      */
  4.     private function handleException(\Exception $eRequest $requestint $type): Response {
  5.         $event = new GetResponseForExceptionEvent($this$request$type$e);
  6.         $this->dispatcher->dispatch(KernelEvents::EXCEPTION$event);
  7.         // a listener might have replaced the exception
  8.         $e $event->getException();
  9.         if (!$event->hasResponse()) {
in vendor/symfony/http-kernel/HttpKernel.php->handleException (line 76)
  1.                 $this->finishRequest($request$type);
  2.                 throw $e;
  3.             }
  4.             return $this->handleException($e$request$type);
  5.         }
  6.     }
  7.     /**
  8.      * {@inheritdoc}
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle() in public/index.php (line 28)
  1.     Request::setTrustedHosts([$trustedHosts]);
  2. }
  3. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. // // LG 20220802 pour tests
  7. // if (file_exists("/home/luc/partage_win10/Poubelle/")) {
  8. //     $jsonfile = "/home/luc/partage_win10/Poubelle/comparePasswords.txt";
  9. // } else if (file_exists("/var/www/html/PAA/Recette/var/log/")) {

Doctrine\DBAL\Driver\ PDOException

SQLSTATE[23505]: Unique violation: 7 ERROR: duplicate key value violates unique constraint "un_adressesip_ip" DETAIL: Key (ip)=(107.150.105.5) already exists.

  1.     public function execute($params null)
  2.     {
  3.         try {
  4.             return parent::execute($params);
  5.         } catch (\PDOException $exception) {
  6.             throw new PDOException($exception);
  7.         }
  8.     }
  9.     /**
  10.      * {@inheritdoc}
  1.         if ($logger) {
  2.             $logger->startQuery($this->sql$this->params$this->types);
  3.         }
  4.         try {
  5.             $stmt $this->stmt->execute($params);
  6.         } catch (Throwable $ex) {
  7.             if ($logger) {
  8.                 $logger->stopQuery();
  9.             }
  10.             throw DBALException::driverExceptionDuringQuery(
  1.                 foreach ($insertData[$tableName] as $column => $value) {
  2.                     $stmt->bindValue($paramIndex++, $value$this->columnTypes[$column]);
  3.                 }
  4.             }
  5.             $stmt->execute();
  6.             if ($isPostInsertId) {
  7.                 $generatedId $idGenerator->generate($this->em$entity);
  8.                 $id = [
  9.                     $this->class->identifier[0] => $generatedId
  1.             if ($invoke !== ListenersInvoker::INVOKE_NONE) {
  2.                 $entities[] = $entity;
  3.             }
  4.         }
  5.         $postInsertIds $persister->executeInserts();
  6.         if ($postInsertIds) {
  7.             // Persister returned post-insert IDs
  8.             foreach ($postInsertIds as $postInsertId) {
  9.                 $idField $class->getSingleIdentifierFieldName();
  1.                 }
  2.             }
  3.             if ($this->entityInsertions) {
  4.                 foreach ($commitOrder as $class) {
  5.                     $this->executeInserts($class);
  6.                 }
  7.             }
  8.             if ($this->entityUpdates) {
  9.                 foreach ($commitOrder as $class) {
  1.             );
  2.         }
  3.         $this->errorIfClosed();
  4.         $this->unitOfWork->commit($entity);
  5.     }
  6.     /**
  7.      * Finds an Entity by its identifier.
  8.      *
EntityManager->flush() in src/Event/ForceBruteListener.php (line 96)
  1.         $loEvenement->setTEvenement(new DateTime()) ;
  2.         $loEvenement->setITypeEvenement($loRepo::TYPE_ROUTENOTFOUND) ;
  3.         $loEvenement->setCDescEvenement($request->getRequestUri()) ;
  4.         $this->entityManager->persist($loEvenement) ;
  5.         $this->entityManager->flush() ;
  6.         $lbBanni $loRepo->updateABannir($loAdresseIP) ;
  7.         if ($lbBanni) {
  8.             // Cette adresse est bannie
  1.         $this->called true;
  2.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  3.         $e $this->stopwatch->start($this->name'event_listener');
  4.         ($this->listener)($event$eventName$dispatcher);
  5.         if ($e->isStarted()) {
  6.             $e->stop();
  7.         }
  1.     protected function doDispatch($listeners$eventNameEvent $event) {
  2.         foreach ($listeners as $listener) {
  3.             if ($event->isPropagationStopped()) {
  4.                 break;
  5.             }
  6.             $listener($event$eventName$this);
  7.         }
  8.     }
  9.     /**
  10.      * Sorts the internal list of listeners for the given event by priority.
  1.         if (null === $event) {
  2.             $event = new Event();
  3.         }
  4.         if ($listeners $this->getListeners($eventName)) {
  5.             $this->doDispatch($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         try {
  2.             $this->preDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($eventName$event);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.      *
  2.      * @throws \Exception
  3.      */
  4.     private function handleException(\Exception $eRequest $requestint $type): Response {
  5.         $event = new GetResponseForExceptionEvent($this$request$type$e);
  6.         $this->dispatcher->dispatch(KernelEvents::EXCEPTION$event);
  7.         // a listener might have replaced the exception
  8.         $e $event->getException();
  9.         if (!$event->hasResponse()) {
in vendor/symfony/http-kernel/HttpKernel.php->handleException (line 76)
  1.                 $this->finishRequest($request$type);
  2.                 throw $e;
  3.             }
  4.             return $this->handleException($e$request$type);
  5.         }
  6.     }
  7.     /**
  8.      * {@inheritdoc}
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle() in public/index.php (line 28)
  1.     Request::setTrustedHosts([$trustedHosts]);
  2. }
  3. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. // // LG 20220802 pour tests
  7. // if (file_exists("/home/luc/partage_win10/Poubelle/")) {
  8. //     $jsonfile = "/home/luc/partage_win10/Poubelle/comparePasswords.txt";
  9. // } else if (file_exists("/var/www/html/PAA/Recette/var/log/")) {

PDOException

SQLSTATE[23505]: Unique violation: 7 ERROR: duplicate key value violates unique constraint "un_adressesip_ip" DETAIL: Key (ip)=(107.150.105.5) already exists.

  1.      * {@inheritdoc}
  2.      */
  3.     public function execute($params null)
  4.     {
  5.         try {
  6.             return parent::execute($params);
  7.         } catch (\PDOException $exception) {
  8.             throw new PDOException($exception);
  9.         }
  10.     }
  1.      * {@inheritdoc}
  2.      */
  3.     public function execute($params null)
  4.     {
  5.         try {
  6.             return parent::execute($params);
  7.         } catch (\PDOException $exception) {
  8.             throw new PDOException($exception);
  9.         }
  10.     }
  1.         if ($logger) {
  2.             $logger->startQuery($this->sql$this->params$this->types);
  3.         }
  4.         try {
  5.             $stmt $this->stmt->execute($params);
  6.         } catch (Throwable $ex) {
  7.             if ($logger) {
  8.                 $logger->stopQuery();
  9.             }
  10.             throw DBALException::driverExceptionDuringQuery(
  1.                 foreach ($insertData[$tableName] as $column => $value) {
  2.                     $stmt->bindValue($paramIndex++, $value$this->columnTypes[$column]);
  3.                 }
  4.             }
  5.             $stmt->execute();
  6.             if ($isPostInsertId) {
  7.                 $generatedId $idGenerator->generate($this->em$entity);
  8.                 $id = [
  9.                     $this->class->identifier[0] => $generatedId
  1.             if ($invoke !== ListenersInvoker::INVOKE_NONE) {
  2.                 $entities[] = $entity;
  3.             }
  4.         }
  5.         $postInsertIds $persister->executeInserts();
  6.         if ($postInsertIds) {
  7.             // Persister returned post-insert IDs
  8.             foreach ($postInsertIds as $postInsertId) {
  9.                 $idField $class->getSingleIdentifierFieldName();
  1.                 }
  2.             }
  3.             if ($this->entityInsertions) {
  4.                 foreach ($commitOrder as $class) {
  5.                     $this->executeInserts($class);
  6.                 }
  7.             }
  8.             if ($this->entityUpdates) {
  9.                 foreach ($commitOrder as $class) {
  1.             );
  2.         }
  3.         $this->errorIfClosed();
  4.         $this->unitOfWork->commit($entity);
  5.     }
  6.     /**
  7.      * Finds an Entity by its identifier.
  8.      *
EntityManager->flush() in src/Event/ForceBruteListener.php (line 96)
  1.         $loEvenement->setTEvenement(new DateTime()) ;
  2.         $loEvenement->setITypeEvenement($loRepo::TYPE_ROUTENOTFOUND) ;
  3.         $loEvenement->setCDescEvenement($request->getRequestUri()) ;
  4.         $this->entityManager->persist($loEvenement) ;
  5.         $this->entityManager->flush() ;
  6.         $lbBanni $loRepo->updateABannir($loAdresseIP) ;
  7.         if ($lbBanni) {
  8.             // Cette adresse est bannie
  1.         $this->called true;
  2.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  3.         $e $this->stopwatch->start($this->name'event_listener');
  4.         ($this->listener)($event$eventName$dispatcher);
  5.         if ($e->isStarted()) {
  6.             $e->stop();
  7.         }
  1.     protected function doDispatch($listeners$eventNameEvent $event) {
  2.         foreach ($listeners as $listener) {
  3.             if ($event->isPropagationStopped()) {
  4.                 break;
  5.             }
  6.             $listener($event$eventName$this);
  7.         }
  8.     }
  9.     /**
  10.      * Sorts the internal list of listeners for the given event by priority.
  1.         if (null === $event) {
  2.             $event = new Event();
  3.         }
  4.         if ($listeners $this->getListeners($eventName)) {
  5.             $this->doDispatch($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         try {
  2.             $this->preDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($eventName$event);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.      *
  2.      * @throws \Exception
  3.      */
  4.     private function handleException(\Exception $eRequest $requestint $type): Response {
  5.         $event = new GetResponseForExceptionEvent($this$request$type$e);
  6.         $this->dispatcher->dispatch(KernelEvents::EXCEPTION$event);
  7.         // a listener might have replaced the exception
  8.         $e $event->getException();
  9.         if (!$event->hasResponse()) {
in vendor/symfony/http-kernel/HttpKernel.php->handleException (line 76)
  1.                 $this->finishRequest($request$type);
  2.                 throw $e;
  3.             }
  4.             return $this->handleException($e$request$type);
  5.         }
  6.     }
  7.     /**
  8.      * {@inheritdoc}
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle() in public/index.php (line 28)
  1.     Request::setTrustedHosts([$trustedHosts]);
  2. }
  3. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. // // LG 20220802 pour tests
  7. // if (file_exists("/home/luc/partage_win10/Poubelle/")) {
  8. //     $jsonfile = "/home/luc/partage_win10/Poubelle/comparePasswords.txt";
  9. // } else if (file_exists("/var/www/html/PAA/Recette/var/log/")) {

Stack Traces 3

[3/3] UniqueConstraintViolationException

Doctrine\DBAL\Exception\UniqueConstraintViolationException:
An exception occurred while executing 'INSERT INTO Paa_Securite.adressesIP (iid_adresseIP, ip, tbanissement, bAuMoinsUneAuthentificationReussie) VALUES (?, ?, ?, ?)' with params [4101, "107.150.105.5", null, null]:

SQLSTATE[23505]: Unique violation: 7 ERROR:  duplicate key value violates unique constraint "un_adressesip_ip"
DETAIL:  Key (ip)=(107.150.105.5) already exists.

  at vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractPostgreSQLDriver.php:51
  at Doctrine\DBAL\Driver\AbstractPostgreSQLDriver->convertException()
     (vendor/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php:169)
  at Doctrine\DBAL\DBALException::wrapException()
     (vendor/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php:145)
  at Doctrine\DBAL\DBALException::driverExceptionDuringQuery()
     (vendor/doctrine/dbal/lib/Doctrine/DBAL/Statement.php:162)
  at Doctrine\DBAL\Statement->execute()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Persisters/Entity/BasicEntityPersister.php:286)
  at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->executeInserts()
     (vendor/doctrine/orm/lib/Doctrine/ORM/UnitOfWork.php:1096)
  at Doctrine\ORM\UnitOfWork->executeInserts()
     (vendor/doctrine/orm/lib/Doctrine/ORM/UnitOfWork.php:401)
  at Doctrine\ORM\UnitOfWork->commit()
     (vendor/doctrine/orm/lib/Doctrine/ORM/EntityManager.php:370)
  at Doctrine\ORM\EntityManager->flush()
     (src/Event/ForceBruteListener.php:96)
  at App\Event\ForceBruteListener->onKernelException()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:108)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:203)
  at Symfony\Component\EventDispatcher\EventDispatcher->doDispatch()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:43)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:135)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:213)
  at Symfony\Component\HttpKernel\HttpKernel->handleException()
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:190)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (public/index.php:28)

[2/3] PDOException

Doctrine\DBAL\Driver\PDOException:
SQLSTATE[23505]: Unique violation: 7 ERROR:  duplicate key value violates unique constraint "un_adressesip_ip"
DETAIL:  Key (ip)=(107.150.105.5) already exists.

  at vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:119
  at Doctrine\DBAL\Driver\PDOStatement->execute()
     (vendor/doctrine/dbal/lib/Doctrine/DBAL/Statement.php:153)
  at Doctrine\DBAL\Statement->execute()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Persisters/Entity/BasicEntityPersister.php:286)
  at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->executeInserts()
     (vendor/doctrine/orm/lib/Doctrine/ORM/UnitOfWork.php:1096)
  at Doctrine\ORM\UnitOfWork->executeInserts()
     (vendor/doctrine/orm/lib/Doctrine/ORM/UnitOfWork.php:401)
  at Doctrine\ORM\UnitOfWork->commit()
     (vendor/doctrine/orm/lib/Doctrine/ORM/EntityManager.php:370)
  at Doctrine\ORM\EntityManager->flush()
     (src/Event/ForceBruteListener.php:96)
  at App\Event\ForceBruteListener->onKernelException()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:108)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:203)
  at Symfony\Component\EventDispatcher\EventDispatcher->doDispatch()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:43)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:135)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:213)
  at Symfony\Component\HttpKernel\HttpKernel->handleException()
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:190)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (public/index.php:28)

[1/3] PDOException

PDOException:
SQLSTATE[23505]: Unique violation: 7 ERROR:  duplicate key value violates unique constraint "un_adressesip_ip"
DETAIL:  Key (ip)=(107.150.105.5) already exists.

  at vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:117
  at PDOStatement->execute()
     (vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:117)
  at Doctrine\DBAL\Driver\PDOStatement->execute()
     (vendor/doctrine/dbal/lib/Doctrine/DBAL/Statement.php:153)
  at Doctrine\DBAL\Statement->execute()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Persisters/Entity/BasicEntityPersister.php:286)
  at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->executeInserts()
     (vendor/doctrine/orm/lib/Doctrine/ORM/UnitOfWork.php:1096)
  at Doctrine\ORM\UnitOfWork->executeInserts()
     (vendor/doctrine/orm/lib/Doctrine/ORM/UnitOfWork.php:401)
  at Doctrine\ORM\UnitOfWork->commit()
     (vendor/doctrine/orm/lib/Doctrine/ORM/EntityManager.php:370)
  at Doctrine\ORM\EntityManager->flush()
     (src/Event/ForceBruteListener.php:96)
  at App\Event\ForceBruteListener->onKernelException()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:108)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:203)
  at Symfony\Component\EventDispatcher\EventDispatcher->doDispatch()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:43)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:135)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:213)
  at Symfony\Component\HttpKernel\HttpKernel->handleException()
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:190)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (public/index.php:28)