darthf1
darthf1
If you're just installing `enqueue/elastica-bundle` specifically for this action, you can also: - require `symfony/messenger` - add entry to `fos_elastica.yaml` ``` fos_elastica: messenger: ~ ``` - run `bin/console fos:elastica:populate --pager-persister=async`.
Try registering the handler yourself. I had similar issues in https://github.com/FriendsOfSymfony/FOSElasticaBundle/issues/1720 ```yaml FOS\ElasticaBundle\Message\Handler\AsyncPersistPageHandler: autoconfigure: false arguments: $persister: '@fos_elastica.async_pager_persister' tags: [{ name: messenger.message_handler, bus: command.bus }] ``` https://symfony.com/doc/current/messenger.html#manually-configuring-handlers
Does it also fail on [v3.10.0](https://github.com/nuxt/test-utils/releases/tag/v3.10.0)? I'm hitting (i think) similar errors when updating to `v3.11.0`, but I still need to investigate.
Nuxt 3.10 just released with an SSR friendly `useId` [composable](https://github.com/nuxt/nuxt/pull/23368) For Non-Nuxt users, something [similar](https://github.com/vuejs/rfcs/discussions/557) is expected in [Vue 3.5](https://twitter.com/youyuxi/status/1745379112456429688) (but i dont know the timetable).
Is this ready now that https://github.com/infection/infection/pull/1913 is merged? :)
Looking for something similar :) Would love to have the release date in (or below) the title.
You can create your own plugin: `~/plugins/portal.ts` ```ts import { defineNuxtPlugin } from '#app' import PortalVue from 'portal-vue' export default defineNuxtPlugin((nuxtApp) => { nuxtApp.vueApp.use(PortalVue) }) ```
@danielroe apologies for pinging you; is there something we can do to fix this? So moving `/public` to layers does not work for the `nuxt-image` component, but works for the...
If you have doctrines `auto_mapping` set to `false`, you need to add the vendors mapping to your own: ```php
Thanks @Snack-X for debugging and linking to issue https://github.com/getsentry/sentry-cli/issues/1843, I can confirm my issue is the same :) The error message for me is thrown in a Gitlab pipeline, using...