This message was deleted.
# helpdesk
s
This message was deleted.
m
cc @eager-raincoat-52616
e
adding an option to customize the http client used example:
Copy code
RoomServiceClient.create(
            "host",
            "api",
            "secret",
            false,
            (OkHttpClient.Builder builder) -> {
                InetAddress addr = InetAddress.getByName("<http://www.example.com|www.example.com>");
                builder.proxy(
                        new Proxy(
                                Proxy.Type.HTTP,
                                new InetSocketAddress(addr, 80)
                        )
                );
            }
    );
b
Thanks for the lightning fast reaction @magnificent-art-43333 and @eager-raincoat-52616 ⚡ 🙇
@eager-raincoat-52616 unfortunately it looks like something went wrong with the build. When fetching the dependency from Maven it looks like the jar file is missing the newly added
OkHttpConfigurator
class file.
👀 1
@eager-raincoat-52616 could you see the same thing in the jars you build?
e
Yeah, looks like mixing java/kotlin doesn't play well with our build scripts. I've swapped that class out now, try 0.5.6
🙏 1
b
cool, I’ll do it right now
looking good now, again thanks for the fast response @eager-raincoat-52616