Paweł Kiersznowski

Results 15 comments of Paweł Kiersznowski

i can't move in-game(seems like the left stick works like the right one), do I have to remap the keys in some config? should it be done in one of...

FYI - I receive a similar error when running Play on prod mode: ```java [2022-08-17 09:18:18.653] ERROR - play.core.server.AkkaHttpServer - - Cannot load SSL context java.lang.reflect.InvocationTargetException: null at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)...

@Vilkina are you perhaps still working on this? i'm up for helping with this issue in case you don't find the time for it :slightly_smiling_face:

@adamgfraser what do you think about having these methods in `Chunk`? ``` def find(f: A => Boolean): Option[A] def head: Option[A] def last: Option[A] def indexWhere(f: A => Boolean): Option[Int]...

@adamgfraser do you think there's anything else I can add?

@Vilkina I added only 4 functions so you can go ahead and browse https://www.scala-lang.org/api/current/scala/collection/immutable/IndexedSeq.html and implement what's useful and missing from `Chunk` :+1:

I noticed that it occurs when I have `openstack4j-httpclient` in my dependencies. is there any other solution than changing the http client? it's the only one where image upload works...

@koztom I found a solution that works for me so far: ``` HttpClientFactory.registerInterceptor((httpClient, requestConfig, config) -> { httpClient.addInterceptorFirst((HttpRequestInterceptor) (httpRequest, httpContext) -> httpRequest.removeHeaders("Accept")); }); ``` Should be executed before authenticating.

@brendanmaguire we haven't made a full release yet. If you want to test it, there should be a snapshot version available on Sonatype: `1.9.5-SNAPSHOT` I believe 😃

@brendanmaguire I tried to release today but publishing to Sonatype is failing. I'll try to fix it this week and release the library.