Yup

Results 66 comments of Yup

I don't compile TS to JS, I run mesh start directly with TS. I tried also giving explicitly `--fileType ts`. ``` --fileType [string] [choices: "json", "ts", "js"] [default: "ts"] ```...

Now its broken when schema is TS file, like ``` const config: Config = { "sources": [ { "name": "Name", "handler": { "graphql": { "source": "src/schema.ts", "batch": true } }...

> I've made a fix for schema imports. @Warxcell can you please try this version and report back > > ``` > @graphql-mesh/cli@0.91.0-alpha-20240624143443-f3d91f7bc44d05a54a1c3b6cfe8a9b24c670681e > ``` > > Thanks in advance!...

Can we move this forward? :)

Another use-case is following: Service A is a provider for questions that users should answer Service B is storage for their answers. So there should be a way for router...

The approach I use is to run container for each queue. ``` FROM MyPHPContainer USER www-data ENTRYPOINT ["php", "bin/console", "messenger:consume", "--limit=10"] CMD ["main"] ```

> > The approach I use is to run container for each queue. > > You have to re-build a container for each queue on each deployment. Having a parameterized...

New insights from my side: if your use single image with FPM and Messenger, you cannot gracefully restart messenger, since [FPM image overrides `STOPSIGNAL SIGQUIT`](https://github.com/docker-library/php/blob/master/7.4/alpine3.13/fpm/Dockerfile#L246), so when you run same...

> > New insights from my side: if your use single image with FPM and Messenger, you cannot gracefully restart messenger > > It would happen if you use single...

I have consistent memory leak, but I don't know where from. Memory raises from 300MB to 4.5GB (which is maximum of the server itself) and then crashes with OOM error....