David Larsson
David Larsson
Example: enum_to_import.proto: ``` package resources.generated.nested; enum AnEnumToImport { KEYBOARD = 1; MOUSE = 2; } ``` import_enum.proto: ``` package resources.generated; import "enum_to_import.proto"; message AnImportEnumMessage { required resources.generated.nested.AnEnumToImport to_import = 1;...
In version 1.4.0, importing from another package doesn't work anymore if java_package is undefined in the imported file. java_package should default to proto package according to spec. I have also...
Example: to-import.proto: ``` package to.import; message ToImport { required int32 required_field = 1; } ``` importer.proto ``` package importer; import "to-import.proto"; message Importer { required ToImport required_field = 1; }...
**Describe the bug** When using the http client a lot, resources are eventually exhausted. A new connection is established on every client request and they are not closed. It doesn't...
Hi! Not sure if this is intended or not but in the latest (yet unreleased) zio-2 code, the behavior of makeSome / provideSome has changed compared to RC-2. If I...
Hi! I profiled my application and noticed that ZPipeline.rechunk was a real bottleneck. It seems to be working on element level instead of chunk level. I replaced it in my...
Hi! Would it be possible to add support for accessing Env in e.g. Routes.handleErrorRequestCauseZIO(f: (Request, Cause[Err]) => ZIO[Any, Nothing, Response]): Route[Env, Nothing] so it becomes Routes.handleErrorRequestCauseZIO(f: (Request, Cause[Err]) => ZIO[Env,...
This PR aims to fix [3173](https://github.com/zio/zio-http/issues/3173) by making sure we don't read more data than we can handle. Now ctx.read() is called after the queue is drained by the consuming...
**Describe the bug** We have a service that proxies large streams to different backends. It's compiled with GraalVM native-image and is running in docker with a quite small heap ~80Mb....