Pascal Berrang

Results 28 comments of Pascal Berrang

I think this is a duplicate of #2697

Sure, I just tested it. It works when I append the `?raw=true` parameter. And the exit code when crashing is 132. I tried to see if that's an error code...

I'm running it in a custom build now and got some more info: ``` Illegal instruction (core dumped) traps: tokio-runtime-w[18032] trap invalid opcode ip:5611e3f0b752 sp:7f33a27fa3a0 error:0 in rgit[5611e3ed3000+6e5000] ``` After...

I played a bit around with the docker build script, effectively setting the target CPU to `x86-64`. But since the relevant line in `v_htmlescape` is a runtime check in the...

It is possible to add the necessary arguments in the docker compose file via the `command` setting: ```yaml version: '3' services: rgit: image: ghcr.io/w4/rgit:main command: - "[::]:8000" - /git -...

Incompatible with new DB refactor

I ran into the same issue not too long ago. The problem with using the `disable_recursion_limit` feature of serde is that it needs to be enabled on the `Deserializer` itself,...

The `unbounded_depth` feature on `serde_json` only exposes the [`disable_recursion_limit`](https://docs.rs/serde_json/latest/serde_json/de/struct.Deserializer.html#method.disable_recursion_limit) function that needs to be called on the deserializer itself. ```rust let mut deserializer = serde_json::Deserializer::from_str(&json); deserializer.disable_recursion_limit(); ``` Since the deserializer...