Kamil Mysliwiec

Results 499 comments of Kamil Mysliwiec

TCP tests https://github.com/nestjs/nest/blob/master/integration/microservices/e2e/sum-rpc.spec.ts

In addition to @jmcdo29 questions, what if I have a single app + I set the global prefix to, let's say, `/api` and someone tries to hit `/users` without the...

Maybe we should simply add 2 additional properties to the application options interface which will determine whether to mount the "not found" and "exception handler" middleware. Hence, you would be...

> This is fine, but which one do you prefer? Example: ```typescript const server = express(); const adapter = new ExpressAdapter(server); const catsApp = await NestFactory.create(AppModule, adapter, { notFoundHandler: false,...

> Would that be something that could be warned against from the factory? Probably not. We can't really determine whether it was set on purpose or not. I think setting...

Would you like to create a PR to address this issue? This has been discussed many times in the past and currently, the only solution is to create a custom...

Sounds good @YeomansIII! Contributions are more than welcome :)

It seems that you already found the solution to your issue @david-golightly-leapyear so I'm assuming we can close this thread(?). As @jmcdo29 said, `lastValueFrom` errors out if there are no...

> Is lastValueFrom really the correct invocation, if it's possible there are no values? In a regular Nest app, there's no possibility that no values would be emitted to the...