Pasqual Koschmieder

Results 129 comments of Pasqual Koschmieder

> Updated to jline-terminal 3.26.1 - jline, however, has deprecated their jansi provider, > and so, we're going back to JNA. FFM looks interesting, but, might not work on java...

Just ran into the same issue, it seems like the gateway was once set up to proxy requests to `/archive` (where archive is the default bucket name) to the minio...

I guess the real problem is not adding the option to the create command, it's that the environment variables need to be replaced (in other words: placeholder support) to get...

As stated in the log: don't reload your server. And please note that the 4.8.0 version is no longer supported and will not receive any bug-fix updates anymore. Please switch...

Have you tried using an accessor for the field instead? It uses a hack to get around that issue

This should be handled as [we wrap the drop of the buffer](https://github.com/CloudNetService/CloudNet/blob/nightly/driver/impl/src/main/java/eu/cloudnetservice/driver/impl/network/netty/buffer/NettyNioBufferReleasingAllocator.java#L77) in a [CleanerDrop](https://github.com/netty/netty/blob/main/buffer/src/main/java/io/netty5/buffer/internal/CleanerDrop.java) which then delegates to our [DirectBufferFreeDrop](https://github.com/CloudNetService/CloudNet/blob/nightly/driver/impl/src/main/java/eu/cloudnetservice/driver/impl/network/netty/buffer/NettyNioBufferReleasingAllocator.java#L136) which explicitly frees the off-heap memory that is used...

Yes... because netty just tells you that the drop was garbage collected before close was called (handled by CleanerDrop as well)... Doesn't mean that the native memory is still in...

Idk what you're on about, but I'm just telling you that the buffers are released even if they leak (in response to your `Every buffer allocated with netty must be...

I'm going to close this as the memory leaks should be resolved by #1687. If you think that the other improvements in this PR are still relevant, please open a...

Just to inform: I would be up for designing & implementing a new API to replace the current StructureModifier construct, which has (at least) one major issue that will make...