| exception |
Symfony\Component\HttpClient\Exception\ClientException {#1965
#message: "HTTP/2 404 returned for "https://git-fenix.ebrana.cz/api/v4/projects/197/repository/files/currentVersion?ref=main"."
#code: 404
#file: "/app/vendor/symfony/http-client/Response/TraceableResponse.php"
#line: 209
-response: Symfony\Component\HttpClient\Response\TraceableResponse {#1955 …}
trace: {
/app/vendor/symfony/http-client/Response/TraceableResponse.php:209 {
Symfony\Component\HttpClient\Response\TraceableResponse->checkStatusCode(int $code): void …
› if (400 <= $code) {
› throw new ClientException($this);
› }
}
/app/vendor/symfony/http-client/Response/TraceableResponse.php:100 {
Symfony\Component\HttpClient\Response\TraceableResponse->getContent(bool $throw = true): string …
› if ($throw) {
› $this->checkStatusCode($this->response->getStatusCode());
› }
arguments: {
$code: 404
}
}
/app/src/Service/Api/Gitlab/Endpoint/Project/FilesApi.php:35 {
App\Service\Api\Gitlab\Endpoint\Project\FilesApi->callApi(FilesRequestDto $requestDto): FilesResponseDto …
›
› return $this->serializer->deserialize($response->getContent(), FilesResponseDto::class, 'json');
› }
}
/app/src/Service/Resolver/Production/Phoenix/LatestReleaseResolver.php:36 {
App\Service\Resolver\Production\Phoenix\LatestReleaseResolver->{closure:App\Service\Resolver\Production\Phoenix\LatestReleaseResolver::resolve():32} …
› $request = new FilesRequestDto($projectId, 'currentVersion', 'main');
› $currentVersionFile = $this->filesApi->callApi($request);
› $tagName = trim($currentVersionFile->getContent());
arguments: {
$requestDto: App\Dto\Api\Gitlab\FilesRequestDto {#1953 …}
}
}
/app/vendor/symfony/cache/Adapter/TraceableAdapter.php:57 {
Symfony\Component\Cache\Adapter\TraceableAdapter->{closure:Symfony\Component\Cache\Adapter\TraceableAdapter::get():54} …
›
› return $callback($item, $save);
› };
arguments: {
Symfony\Component\Cache\CacheItem {#1949 …}
true
}
}
/app/vendor/symfony/cache/LockRegistry.php:110 {
Symfony\Component\Cache\LockRegistry::compute(callable $callback, ItemInterface $item, bool &$save, CacheInterface $pool, ?Closure $setMetadata = null, ?LoggerInterface $logger = null, ?float $beta = null): mixed …
›
› $value = $callback($item, $save);
›
arguments: {
Symfony\Component\Cache\CacheItem {#1949 …}
true
}
}
/app/vendor/symfony/cache/Traits/ContractsTrait.php:102 {
Symfony\Component\Cache\Adapter\AbstractAdapter->{closure:Symfony\Component\Cache\Traits\ContractsTrait::doGet():85} …
› try {
› $value = ($this->callbackWrapper)($callback, $item, $save, $pool, function (CacheItem $item) use ($setMetadata, $startTime, &$metadata) {
› $setMetadata($item, $startTime, $metadata);
arguments: {
$callback: Closure(CacheItem $item, bool &$save) {#1941 …}
$item: Symfony\Component\Cache\CacheItem {#1949 …}
&$save: true
$pool: Symfony\Component\Cache\Adapter\RedisAdapter {#161 …}
$setMetadata: Closure(CacheItem $item) {#1950 …}
$logger: Monolog\Logger {#205 …}
$beta: 1.0
}
}
/app/vendor/symfony/cache-contracts/CacheTrait.php:64 {
Symfony\Component\Cache\Adapter\AbstractAdapter->contractsGet(CacheItemPoolInterface $pool, string $key, callable $callback, ?float $beta, ?array &$metadata = null, ?LoggerInterface $logger = null): mixed …
› $save = true;
› $item->set($callback($item, $save));
› if ($save) {
arguments: {
Symfony\Component\Cache\CacheItem {#1949 …}
true
}
}
/app/vendor/symfony/cache/Traits/ContractsTrait.php:85 {
Symfony\Component\Cache\Adapter\AbstractAdapter->doGet(AdapterInterface $pool, string $key, callable $callback, ?float $beta, ?array &$metadata = null): mixed …
›
› return $this->contractsGet($pool, $key, function (CacheItem $item, bool &$save) use ($pool, $callback, $setMetadata, &$metadata, $key, $beta) {
› // don't wrap nor save recursive calls
arguments: {
$pool: Symfony\Component\Cache\Adapter\RedisAdapter {#161 …}
$key: "phoenix_latest_version"
$callback: Closure(CacheItem $item, bool &$save) {#1948 …}
$beta: 1.0
&$metadata: []
$logger: Monolog\Logger {#205 …}
}
}
/app/vendor/symfony/cache-contracts/CacheTrait.php:30 {
Symfony\Component\Cache\Adapter\AbstractAdapter->get(string $key, callable $callback, ?float $beta = null, ?array &$metadata = null): mixed …
› {
› return $this->doGet($this, $key, $callback, $beta, $metadata);
› }
arguments: {
$pool: Symfony\Component\Cache\Adapter\RedisAdapter {#161 …}
$key: "phoenix_latest_version"
$callback: Closure(CacheItem $item, bool &$save) {#1941 …}
$beta: 1.0
&$metadata: []
}
}
/app/vendor/symfony/cache/Adapter/TraceableAdapter.php:62 {
Symfony\Component\Cache\Adapter\TraceableAdapter->get(string $key, callable $callback, ?float $beta = null, ?array &$metadata = null): mixed …
› try {
› $value = $this->pool->get($key, $callback, $beta, $metadata);
› $event->result[$key] = get_debug_type($value);
arguments: {
$key: "phoenix_latest_version"
$callback: Closure(CacheItem $item, bool &$save) {#1941 …}
$beta: null
&$metadata: []
}
}
/app/src/Service/Resolver/Production/Phoenix/LatestReleaseResolver.php:30 {
App\Service\Resolver\Production\Phoenix\LatestReleaseResolver->resolve(): ReleasesResponseDto …
› {
› return $this->phoenixImplementationCache->get(
› self::CACHE_KEY,
arguments: {
$key: "phoenix_latest_version"
$callback: Closure(CacheItem $item, bool &$save) {#1941 …}
}
}
/app/src/Controller/Production/Phoenix/Implementation/ImplementationController.php:51 {
App\Controller\Production\Phoenix\Implementation\ImplementationController->list(ImplementationRepository $repository, PaginationFactory $paginationFactory, Request $request, LatestReleaseResolver $latestReleaseResolver): Response …
› 'paginator' => $paginator,
› 'latestRelease' => $latestReleaseResolver->resolve(),
› ]);
}
/app/vendor/symfony/http-kernel/HttpKernel.php:183 {
Symfony\Component\HttpKernel\HttpKernel->handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response …
› // call controller
› $response = $controller(...$arguments);
›
arguments: {
$repository: App\Repository\Production\Phoenix\ImplementationRepository {#1349 …}
$paginationFactory: App\Service\Factory\PaginationFactory {#1361 …}
$request: Symfony\Component\HttpFoundation\Request {#2 …}
$latestReleaseResolver: App\Service\Resolver\Production\Phoenix\LatestReleaseResolver {#1462 …}
}
}
/app/vendor/symfony/http-kernel/HttpKernel.php:76 {
Symfony\Component\HttpKernel\HttpKernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
› try {
› return $response = $this->handleRaw($request, $type);
› } catch (\Throwable $e) {
arguments: {
$request: Symfony\Component\HttpFoundation\Request {#2 …}
$type: 1
}
}
/app/vendor/symfony/http-kernel/Kernel.php:191 {
Symfony\Component\HttpKernel\Kernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
› try {
› return $this->getHttpKernel()->handle($request, $type, $catch);
› } finally {
arguments: {
$request: Symfony\Component\HttpFoundation\Request {#2 …}
$type: 1
$catch: true
}
}
/app/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35 {
Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run(): int …
› {
› $response = $this->kernel->handle($this->request);
›
arguments: {
$request: Symfony\Component\HttpFoundation\Request {#2 …}
}
}
/app/vendor/autoload_runtime.php:32 {
require_once …
› ->getRunner($app)
› ->run()
› );
}
/app/public/index.php:5 {
›
› require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
›
arguments: {
"/app/vendor/autoload_runtime.php"
}
}
}
} |
| logger |
Symfony\Bridge\Monolog\Processor\DebugProcessor {#696
-records: [
2 => [
[
"timestamp" => 1778074290
"timestamp_rfc3339" => "2026-05-06T15:31:30.685+02:00"
"message" => "Matched route "{route}"."
"priority" => 200
"priorityName" => "INFO"
"context" => [
"route" => "implementation_list"
"route_parameters" => [
"_route" => "implementation_list"
"_controller" => "App\Controller\Production\Phoenix\Implementation\ImplementationController::list"
]
"request_uri" => "https://feature-d020588-auto-reindex.it.edevel.cz/production/"
"method" => "GET"
]
"channel" => "request"
]
[
"timestamp" => 1778074290
"timestamp_rfc3339" => "2026-05-06T15:31:30.687+02:00"
"message" => "Checking for authenticator support."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"firewall_name" => "main"
"authenticators" => 3
]
"channel" => "security"
]
[
"timestamp" => 1778074290
"timestamp_rfc3339" => "2026-05-06T15:31:30.687+02:00"
"message" => "Checking support on authenticator."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"firewall_name" => "main"
"authenticator" => "Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticator"
]
"channel" => "security"
]
[
"timestamp" => 1778074290
"timestamp_rfc3339" => "2026-05-06T15:31:30.687+02:00"
"message" => "Authenticator does not support the request."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"firewall_name" => "main"
"authenticator" => "Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticator"
]
"channel" => "security"
]
[
"timestamp" => 1778074290
"timestamp_rfc3339" => "2026-05-06T15:31:30.687+02:00"
"message" => "Checking support on authenticator."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"firewall_name" => "main"
"authenticator" => "Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticator"
]
"channel" => "security"
]
[
"timestamp" => 1778074290
"timestamp_rfc3339" => "2026-05-06T15:31:30.687+02:00"
"message" => "Authenticator does not support the request."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"firewall_name" => "main"
"authenticator" => "Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticator"
]
"channel" => "security"
]
[
"timestamp" => 1778074290
"timestamp_rfc3339" => "2026-05-06T15:31:30.687+02:00"
"message" => "Checking support on authenticator."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"firewall_name" => "main"
"authenticator" => "Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticator"
]
"channel" => "security"
]
[
"timestamp" => 1778074290
"timestamp_rfc3339" => "2026-05-06T15:31:30.687+02:00"
"message" => "Remember-me cookie detected."
"priority" => 100
"priorityName" => "DEBUG"
"context" => []
"channel" => "security"
]
[
"timestamp" => 1778074290
"timestamp_rfc3339" => "2026-05-06T15:31:30.689+02:00"
"message" => "Read existing security token from the session."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"key" => "_security_main"
"token_class" => "Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken"
]
"channel" => "security"
]
[
"timestamp" => 1778074290
"timestamp_rfc3339" => "2026-05-06T15:31:30.701+02:00"
"message" => "Connecting with parameters {params}"
"priority" => 200
"priorityName" => "INFO"
"context" => [
"params" => [
"driver" => "pdo_pgsql"
"charset" => "utf8"
"host" => "10.80.176.41"
"user" => "ebrana-lab-deploy"
"password" => "<redacted>"
"dbname" => "feature-d020588-auto-reindex"
"idle_connection_ttl" => 600
"port" => null
"driverOptions" => []
"serverVersion" => "17"
"defaultTableOptions" => [
"charset" => "utf8"
"collate" => "utf8_unicode_ci"
]
]
]
"channel" => "doctrine"
]
[
"timestamp" => 1778074290
"timestamp_rfc3339" => "2026-05-06T15:31:30.714+02:00"
"message" => "Executing statement: {sql} (parameters: {params}, types: {types})"
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"sql" => "SELECT t0.id AS id_1, t0.imes_id AS imes_id_2, t0.name AS name_3, t0.surname AS surname_4, t0.username AS username_5, t0.email AS email_6, t0.active AS active_7, t0.imes_token AS imes_token_8, t0.imes_refresh_token AS imes_refresh_token_9, t0.imes_token_expires_timestamp AS imes_token_expires_timestamp_10, t0.preferred_pickup_time AS preferred_pickup_time_11, t0.christmas_mode AS christmas_mode_12, t0.fun_mode AS fun_mode_13, t0.lunch_notification AS lunch_notification_14, t0.login_link AS login_link_15, t0.ms_uid AS ms_uid_16, t0.preferred_company_id AS preferred_company_id_17 FROM imes_user t0 WHERE t0.id = ?"
"params" => [
1 => 342
]
"types" => [
1 => Doctrine\DBAL\ParameterType {#1070
+name: "INTEGER"
}
]
]
"channel" => "doctrine"
]
[
"timestamp" => 1778074290
"timestamp_rfc3339" => "2026-05-06T15:31:30.718+02:00"
"message" => "Executing statement: {sql} (parameters: {params}, types: {types})"
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"sql" => "SELECT t0.id AS id_1, t0.name AS name_2 FROM ldap_role t0 INNER JOIN imes_user_ldap_role ON t0.id = imes_user_ldap_role.ldap_role_id WHERE imes_user_ldap_role.imes_user_id = ?"
"params" => [
1 => 342
]
"types" => [
1 => Doctrine\DBAL\ParameterType {#1070}
]
]
"channel" => "doctrine"
]
[
"timestamp" => 1778074290
"timestamp_rfc3339" => "2026-05-06T15:31:30.719+02:00"
"message" => "User was reloaded from a user provider."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"provider" => "Symfony\Bridge\Doctrine\Security\User\EntityUserProvider"
"username" => "marketa-braunova"
]
"channel" => "security"
]
[
"timestamp" => 1778074290
"timestamp_rfc3339" => "2026-05-06T15:31:30.719+02:00"
"message" => "Skipping the "{authenticator}" authenticator as it did not support the request."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"authenticator" => "Symfony\Component\Security\Http\Authenticator\RememberMeAuthenticator"
]
"channel" => "security"
]
[
"timestamp" => 1778074290
"timestamp_rfc3339" => "2026-05-06T15:31:30.736+02:00"
"message" => "Lock acquired, now computing item "{key}""
"priority" => 200
"priorityName" => "INFO"
"context" => [
"key" => "phoenix_latest_version"
]
"channel" => "cache"
]
[
"timestamp" => 1778074290
"timestamp_rfc3339" => "2026-05-06T15:31:30.737+02:00"
"message" => "Request: "GET https://git-fenix.ebrana.cz/api/v4/projects/197/repository/files/currentVersion?ref=main""
"priority" => 200
"priorityName" => "INFO"
"context" => []
"channel" => "http_client"
]
[
"timestamp" => 1778074290
"timestamp_rfc3339" => "2026-05-06T15:31:30.849+02:00"
"message" => "Response: "{http_code} {url}" {total_time} seconds"
"priority" => 200
"priorityName" => "INFO"
"context" => [
"http_code" => 404
"url" => "https://git-fenix.ebrana.cz/api/v4/projects/197/repository/files/currentVersion?ref=main"
"total_time" => 0.112107
]
"channel" => "http_client"
]
[
"timestamp" => 1778074290
"timestamp_rfc3339" => "2026-05-06T15:31:30.851+02:00"
"message" => "Uncaught PHP Exception Symfony\Component\HttpClient\Exception\ClientException: "HTTP/2 404 returned for "https://git-fenix.ebrana.cz/api/v4/projects/197/repository/files/currentVersion?ref=main"." at TraceableResponse.php line 209"
"priority" => 500
"priorityName" => "CRITICAL"
"context" => [
"exception" => Symfony\Component\HttpClient\Exception\ClientException {#1965
#message: "HTTP/2 404 returned for "https://git-fenix.ebrana.cz/api/v4/projects/197/repository/files/currentVersion?ref=main"."
#code: 404
#file: "/app/vendor/symfony/http-client/Response/TraceableResponse.php"
#line: 209
-response: Symfony\Component\HttpClient\Response\TraceableResponse {#1955 …}
trace: {
/app/vendor/symfony/http-client/Response/TraceableResponse.php:209 {
Symfony\Component\HttpClient\Response\TraceableResponse->checkStatusCode(int $code): void …
› if (400 <= $code) {
› throw new ClientException($this);
› }
}
/app/vendor/symfony/http-client/Response/TraceableResponse.php:100 {
Symfony\Component\HttpClient\Response\TraceableResponse->getContent(bool $throw = true): string …
› if ($throw) {
› $this->checkStatusCode($this->response->getStatusCode());
› }
arguments: {
$code: 404
}
}
/app/src/Service/Api/Gitlab/Endpoint/Project/FilesApi.php:35 {
App\Service\Api\Gitlab\Endpoint\Project\FilesApi->callApi(FilesRequestDto $requestDto): FilesResponseDto …
›
› return $this->serializer->deserialize($response->getContent(), FilesResponseDto::class, 'json');
› }
}
/app/src/Service/Resolver/Production/Phoenix/LatestReleaseResolver.php:36 {
App\Service\Resolver\Production\Phoenix\LatestReleaseResolver->{closure:App\Service\Resolver\Production\Phoenix\LatestReleaseResolver::resolve():32} …
› $request = new FilesRequestDto($projectId, 'currentVersion', 'main');
› $currentVersionFile = $this->filesApi->callApi($request);
› $tagName = trim($currentVersionFile->getContent());
arguments: {
$requestDto: App\Dto\Api\Gitlab\FilesRequestDto {#1953 …}
}
}
/app/vendor/symfony/cache/Adapter/TraceableAdapter.php:57 {
Symfony\Component\Cache\Adapter\TraceableAdapter->{closure:Symfony\Component\Cache\Adapter\TraceableAdapter::get():54} …
›
› return $callback($item, $save);
› };
arguments: {
Symfony\Component\Cache\CacheItem {#1949 …}
true
}
}
/app/vendor/symfony/cache/LockRegistry.php:110 {
Symfony\Component\Cache\LockRegistry::compute(callable $callback, ItemInterface $item, bool &$save, CacheInterface $pool, ?Closure $setMetadata = null, ?LoggerInterface $logger = null, ?float $beta = null): mixed …
›
› $value = $callback($item, $save);
›
arguments: {
Symfony\Component\Cache\CacheItem {#1949 …}
true
}
}
/app/vendor/symfony/cache/Traits/ContractsTrait.php:102 {
Symfony\Component\Cache\Adapter\AbstractAdapter->{closure:Symfony\Component\Cache\Traits\ContractsTrait::doGet():85} …
› try {
› $value = ($this->callbackWrapper)($callback, $item, $save, $pool, function (CacheItem $item) use ($setMetadata, $startTime, &$metadata) {
› $setMetadata($item, $startTime, $metadata);
arguments: {
$callback: Closure(CacheItem $item, bool &$save) {#1941 …}
$item: Symfony\Component\Cache\CacheItem {#1949 …}
&$save: true
$pool: Symfony\Component\Cache\Adapter\RedisAdapter {#161 …}
$setMetadata: Closure(CacheItem $item) {#1950 …}
$logger: Monolog\Logger {#205 …}
$beta: 1.0
}
}
/app/vendor/symfony/cache-contracts/CacheTrait.php:64 {
Symfony\Component\Cache\Adapter\AbstractAdapter->contractsGet(CacheItemPoolInterface $pool, string $key, callable $callback, ?float $beta, ?array &$metadata = null, ?LoggerInterface $logger = null): mixed …
› $save = true;
› $item->set($callback($item, $save));
› if ($save) {
arguments: {
Symfony\Component\Cache\CacheItem {#1949 …}
true
}
}
/app/vendor/symfony/cache/Traits/ContractsTrait.php:85 {
Symfony\Component\Cache\Adapter\AbstractAdapter->doGet(AdapterInterface $pool, string $key, callable $callback, ?float $beta, ?array &$metadata = null): mixed …
›
› return $this->contractsGet($pool, $key, function (CacheItem $item, bool &$save) use ($pool, $callback, $setMetadata, &$metadata, $key, $beta) {
› // don't wrap nor save recursive calls
arguments: {
$pool: Symfony\Component\Cache\Adapter\RedisAdapter {#161 …}
$key: "phoenix_latest_version"
$callback: Closure(CacheItem $item, bool &$save) {#1948 …}
$beta: 1.0
&$metadata: []
$logger: Monolog\Logger {#205 …}
}
}
/app/vendor/symfony/cache-contracts/CacheTrait.php:30 {
Symfony\Component\Cache\Adapter\AbstractAdapter->get(string $key, callable $callback, ?float $beta = null, ?array &$metadata = null): mixed …
› {
› return $this->doGet($this, $key, $callback, $beta, $metadata);
› }
arguments: {
$pool: Symfony\Component\Cache\Adapter\RedisAdapter {#161 …}
$key: "phoenix_latest_version"
$callback: Closure(CacheItem $item, bool &$save) {#1941 …}
$beta: 1.0
&$metadata: []
}
}
/app/vendor/symfony/cache/Adapter/TraceableAdapter.php:62 {
Symfony\Component\Cache\Adapter\TraceableAdapter->get(string $key, callable $callback, ?float $beta = null, ?array &$metadata = null): mixed …
› try {
› $value = $this->pool->get($key, $callback, $beta, $metadata);
› $event->result[$key] = get_debug_type($value);
arguments: {
$key: "phoenix_latest_version"
$callback: Closure(CacheItem $item, bool &$save) {#1941 …}
$beta: null
&$metadata: []
}
}
/app/src/Service/Resolver/Production/Phoenix/LatestReleaseResolver.php:30 {
App\Service\Resolver\Production\Phoenix\LatestReleaseResolver->resolve(): ReleasesResponseDto …
› {
› return $this->phoenixImplementationCache->get(
› self::CACHE_KEY,
arguments: {
$key: "phoenix_latest_version"
$callback: Closure(CacheItem $item, bool &$save) {#1941 …}
}
}
/app/src/Controller/Production/Phoenix/Implementation/ImplementationController.php:51 {
App\Controller\Production\Phoenix\Implementation\ImplementationController->list(ImplementationRepository $repository, PaginationFactory $paginationFactory, Request $request, LatestReleaseResolver $latestReleaseResolver): Response …
› 'paginator' => $paginator,
› 'latestRelease' => $latestReleaseResolver->resolve(),
› ]);
}
/app/vendor/symfony/http-kernel/HttpKernel.php:183 {
Symfony\Component\HttpKernel\HttpKernel->handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response …
› // call controller
› $response = $controller(...$arguments);
›
arguments: {
$repository: App\Repository\Production\Phoenix\ImplementationRepository {#1349 …}
$paginationFactory: App\Service\Factory\PaginationFactory {#1361 …}
$request: Symfony\Component\HttpFoundation\Request {#2 …}
$latestReleaseResolver: App\Service\Resolver\Production\Phoenix\LatestReleaseResolver {#1462 …}
}
}
/app/vendor/symfony/http-kernel/HttpKernel.php:76 {
Symfony\Component\HttpKernel\HttpKernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
› try {
› return $response = $this->handleRaw($request, $type);
› } catch (\Throwable $e) {
arguments: {
$request: Symfony\Component\HttpFoundation\Request {#2 …}
$type: 1
}
}
/app/vendor/symfony/http-kernel/Kernel.php:191 {
Symfony\Component\HttpKernel\Kernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
› try {
› return $this->getHttpKernel()->handle($request, $type, $catch);
› } finally {
arguments: {
$request: Symfony\Component\HttpFoundation\Request {#2 …}
$type: 1
$catch: true
}
}
/app/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35 {
Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run(): int …
› {
› $response = $this->kernel->handle($this->request);
›
arguments: {
$request: Symfony\Component\HttpFoundation\Request {#2 …}
}
}
/app/vendor/autoload_runtime.php:32 {
require_once …
› ->getRunner($app)
› ->run()
› );
}
/app/public/index.php:5 {
›
› require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
›
arguments: {
"/app/vendor/autoload_runtime.php"
}
}
}
}
]
"channel" => "request"
]
[
"timestamp" => 1778074291
"timestamp_rfc3339" => "2026-05-06T15:31:31.003+02:00"
"message" => "Stored the security token in the session."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"key" => "_security_main"
]
"channel" => "security"
]
]
1994 => [
[
"timestamp" => 1778074290
"timestamp_rfc3339" => "2026-05-06T15:31:30.918+02:00"
"message" => "Executing query: {sql}"
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"sql" => "SELECT CURRENT_DATABASE()"
]
"channel" => "doctrine"
]
[
"timestamp" => 1778074290
"timestamp_rfc3339" => "2026-05-06T15:31:30.919+02:00"
"message" => "Executing statement: {sql} (parameters: {params}, types: {types})"
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"sql" => """
SELECT quote_ident(table_name) AS table_name,\n
table_schema AS schema_name\n
FROM information_schema.tables\n
WHERE table_catalog = ?\n
AND table_schema NOT LIKE 'pg\_%'\n
AND table_schema != 'information_schema'\n
AND table_name != 'geometry_columns'\n
AND table_name != 'spatial_ref_sys'\n
AND table_type = 'BASE TABLE'\n
ORDER BY\n
quote_ident(table_name)
"""
"params" => [
1 => "feature-d020588-auto-reindex"
]
"types" => [
1 => Doctrine\DBAL\ParameterType {#2694
+name: "STRING"
}
]
]
"channel" => "doctrine"
]
[
"timestamp" => 1778074290
"timestamp_rfc3339" => "2026-05-06T15:31:30.922+02:00"
"message" => "Executing query: {sql}"
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"sql" => "SELECT current_schema()"
]
"channel" => "doctrine"
]
[
"timestamp" => 1778074290
"timestamp_rfc3339" => "2026-05-06T15:31:30.923+02:00"
"message" => "Executing query: {sql}"
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"sql" => "SELECT CURRENT_DATABASE()"
]
"channel" => "doctrine"
]
[
"timestamp" => 1778074290
"timestamp_rfc3339" => "2026-05-06T15:31:30.923+02:00"
"message" => "Executing statement: {sql} (parameters: {params}, types: {types})"
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"sql" => """
SELECT quote_ident(table_name) AS table_name,\n
table_schema AS schema_name\n
FROM information_schema.tables\n
WHERE table_catalog = ?\n
AND table_schema NOT LIKE 'pg\_%'\n
AND table_schema != 'information_schema'\n
AND table_name != 'geometry_columns'\n
AND table_name != 'spatial_ref_sys'\n
AND table_type = 'BASE TABLE'\n
ORDER BY\n
quote_ident(table_name)
"""
"params" => [
1 => "feature-d020588-auto-reindex"
]
"types" => [
1 => Doctrine\DBAL\ParameterType {#2694}
]
]
"channel" => "doctrine"
]
[
"timestamp" => 1778074290
"timestamp_rfc3339" => "2026-05-06T15:31:30.925+02:00"
"message" => "Executing query: {sql}"
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"sql" => "SELECT CURRENT_DATABASE()"
]
"channel" => "doctrine"
]
[
"timestamp" => 1778074290
"timestamp_rfc3339" => "2026-05-06T15:31:30.926+02:00"
"message" => "Executing statement: {sql} (parameters: {params}, types: {types})"
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"sql" => """
SELECT quote_ident(n.nspname) AS schema_name,\n
quote_ident(c.relname) AS table_name,\n
quote_ident(a.attname) AS field,\n
t.typname AS type,\n
format_type(a.atttypid, a.atttypmod) AS complete_type,\n
bt.typname AS domain_type,\n
format_type(bt.oid, t.typtypmod) AS domain_complete_type,\n
a.attnotnull AS isnotnull,\n
a.attidentity,\n
( SELECT\n
CASE\n
WHEN a.attgenerated = 's' THEN NULL\n
ELSE pg_get_expr(adbin, adrelid)\n
END\n
FROM pg_attrdef\n
WHERE c.oid = pg_attrdef.adrelid\n
AND pg_attrdef.adnum=a.attnum) AS "default",\n
dsc.description AS comment,\n
CASE\n
WHEN coll.collprovider = 'c'\n
THEN coll.collcollate\n
WHEN coll.collprovider = 'd'\n
THEN NULL\n
ELSE coll.collname\n
END AS collation\n
FROM pg_attribute a\n
JOIN pg_class c\n
ON c.oid = a.attrelid\n
JOIN pg_namespace n\n
ON n.oid = c.relnamespace\n
JOIN pg_type t\n
ON t.oid = a.atttypid\n
LEFT JOIN pg_type bt\n
ON t.typtype = 'd'\n
AND bt.oid = t.typbasetype\n
LEFT JOIN pg_collation coll\n
ON coll.oid = a.attcollation\n
LEFT JOIN pg_depend dep\n
ON dep.objid = c.oid\n
AND dep.deptype = 'e'\n
AND dep.classid = (SELECT oid FROM pg_class WHERE relname = 'pg_class')\n
LEFT JOIN pg_description dsc\n
ON dsc.objoid = c.oid AND dsc.objsubid = a.attnum\n
LEFT JOIN pg_inherits i\n
ON i.inhrelid = c.oid\n
LEFT JOIN pg_class p\n
ON i.inhparent = p.oid\n
AND p.relkind = 'p'\n
WHERE n.nspname = ANY(current_schemas(false)) AND c.relname = ? AND n.nspname NOT IN ('pg_catalog', 'information_schema', 'pg_toast')\n
-- 'r' for regular tables - 'p' for partitioned tables\n
AND c.relkind IN ('r', 'p')\n
AND a.attnum > 0\n
AND dep.refobjid IS NULL\n
-- exclude partitions (tables that inherit from partitioned tables)\n
AND p.oid IS NULL\n
ORDER BY n.nspname,\n
c.relname,\n
a.attnum
"""
"params" => [
1 => "doctrine_migration_versions"
]
"types" => [
1 => Doctrine\DBAL\ParameterType {#2694}
]
]
"channel" => "doctrine"
]
[
"timestamp" => 1778074290
"timestamp_rfc3339" => "2026-05-06T15:31:30.932+02:00"
"message" => "Executing query: {sql}"
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"sql" => "SELECT CURRENT_DATABASE()"
]
"channel" => "doctrine"
]
[
"timestamp" => 1778074290
"timestamp_rfc3339" => "2026-05-06T15:31:30.933+02:00"
"message" => "Executing statement: {sql} (parameters: {params}, types: {types})"
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"sql" => """
SELECT\n
quote_ident(n.nspname) AS schema_name,\n
quote_ident(c.relname) AS table_name,\n
quote_ident(ic.relname) AS relname,\n
i.indisunique,\n
i.indisprimary,\n
i.indkey,\n
i.indrelid,\n
pg_get_expr(indpred, indrelid) AS "where",\n
quote_ident(attname) AS attname\n
FROM pg_index i\n
JOIN pg_class AS c ON c.oid = i.indrelid\n
JOIN pg_namespace n ON n.oid = c.relnamespace\n
JOIN pg_class AS ic ON ic.oid = i.indexrelid\n
JOIN LATERAL UNNEST(i.indkey) WITH ORDINALITY AS keys(attnum, ord)\n
ON TRUE\n
JOIN pg_attribute a\n
ON a.attrelid = c.oid\n
AND a.attnum = keys.attnum\n
WHERE n.nspname = ANY(current_schemas(false)) AND c.relname = ? AND n.nspname NOT IN ('pg_catalog', 'information_schema', 'pg_toast')\n
ORDER BY 1, 2, keys.ord;
"""
"params" => [
1 => "doctrine_migration_versions"
]
"types" => [
1 => Doctrine\DBAL\ParameterType {#2694}
]
]
"channel" => "doctrine"
]
[
"timestamp" => 1778074290
"timestamp_rfc3339" => "2026-05-06T15:31:30.935+02:00"
"message" => "Executing query: {sql}"
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"sql" => "SELECT CURRENT_DATABASE()"
]
"channel" => "doctrine"
]
[
"timestamp" => 1778074290
"timestamp_rfc3339" => "2026-05-06T15:31:30.936+02:00"
"message" => "Executing statement: {sql} (parameters: {params}, types: {types})"
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"sql" => """
SELECT\n
quote_ident(tn.nspname) AS schema_name,\n
quote_ident(tc.relname) AS table_name,\n
quote_ident(r.conname) as conname,\n
pg_get_constraintdef(r.oid, true) as condef,\n
r.condeferrable,\n
r.condeferred\n
FROM pg_constraint r\n
JOIN pg_class AS tc ON tc.oid = r.conrelid\n
JOIN pg_namespace tn ON tn.oid = tc.relnamespace\n
WHERE r.conrelid IN\n
(\n
SELECT c.oid\n
FROM pg_class c\n
JOIN pg_namespace n\n
ON n.oid = c.relnamespace\n
WHERE n.nspname = ANY(current_schemas(false)) AND c.relname = ? AND n.nspname NOT IN ('pg_catalog', 'information_schema', 'pg_toast'))\n
AND r.contype = 'f'\n
ORDER BY 1, 2
"""
"params" => [
1 => "doctrine_migration_versions"
]
"types" => [
1 => Doctrine\DBAL\ParameterType {#2694}
]
]
"channel" => "doctrine"
]
[
"timestamp" => 1778074290
"timestamp_rfc3339" => "2026-05-06T15:31:30.937+02:00"
"message" => "Executing query: {sql}"
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"sql" => "SELECT CURRENT_DATABASE()"
]
"channel" => "doctrine"
]
[
"timestamp" => 1778074290
"timestamp_rfc3339" => "2026-05-06T15:31:30.937+02:00"
"message" => "Executing statement: {sql} (parameters: {params}, types: {types})"
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"sql" => """
SELECT quote_ident(n.nspname) AS schema_name,\n
quote_ident(c.relname) AS table_name,\n
CASE c.relpersistence WHEN 'u' THEN true ELSE false END as unlogged,\n
obj_description(c.oid, 'pg_class') AS comment\n
FROM pg_class c\n
INNER JOIN pg_namespace n\n
ON n.oid = c.relnamespace\n
WHERE\n
c.relkind = 'r'\n
AND n.nspname = ANY(current_schemas(false)) AND c.relname = ? AND n.nspname NOT IN ('pg_catalog', 'information_schema', 'pg_toast')
"""
"params" => [
1 => "doctrine_migration_versions"
]
"types" => [
1 => Doctrine\DBAL\ParameterType {#2694}
]
]
"channel" => "doctrine"
]
[
"timestamp" => 1778074290
"timestamp_rfc3339" => "2026-05-06T15:31:30.939+02:00"
"message" => "Executing query: {sql}"
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"sql" => "SELECT * FROM doctrine_migration_versions"
]
"channel" => "doctrine"
]
[
"timestamp" => 1778074291
"timestamp_rfc3339" => "2026-05-06T15:31:31.000+02:00"
"message" => "Executing query: {sql}"
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"sql" => "SELECT CURRENT_DATABASE()"
]
"channel" => "doctrine"
]
]
]
-errorCount: [
2 => 1
1994 => 0
]
-requestStack: Symfony\Component\HttpKernel\Debug\VirtualRequestStack {#695 …}
} |