-
In many complex request handlers there may be many points where the underlying response is being written to at different points in the server logic, the current methodology forces these writes to be t…
-
Those are not very good steps to reproduce as the application code currently lives in two places, a Kafka Streams IQ library and a service which uses the library.
1. In one application both RPC cli…
-
### Official Instance
- [X] The bug is reproducable on the [official hosted instance](http://piped.video/) or is API related.
### Describe the bug
2023-04-26-73fa1ed introduced a regression for sub…
-
Hi! First, thank you for you work!
I didn't find any documentation about middleware. Mostly i'm interested in exception handler and response wrapper.
1. I want to add custom exception handling wit…
-
code like this.
```java
class Test {
@Inject
String name;
}
class MyBeansDescription {
@Provides
public static String name() {
return "Alice";
}
@Provides
public …
-
I wonder why since it doesn't specify the mod that does this or whether or not it's on fabric's end. Copied it from error box.
Minecraft has crashed!
net.fabricmc.loader.impl.FormattedException:…
-
Currently, I use manual way to binding:
Please show me the way binding automatically. Thank you very much
-
Hi @eduard-vasinskyi, I've seen some benchmarks that position Activej JSON serializer as the most fast serializer. Yet, I can't find any example using this serializer. Could you provide an example?
…
-
```
fun get() {
val httpClient = AsyncHttpClient.create(eventloop).withKeepAliveTimeout(Duration.ofHours(1))
val promise = httpClient.request(HttpRequest.get(url)).then { response ->
respon…
-
code like this;
```kotlin
class MyBeansDescription : AbstractModule() {
@Provides
@Named("i1")
fun i1(): Function {
return Function { it ->
1
}
}
}
fun main(){
// …