John O'Reilly
06/27/2022, 1:07 PMconnector
and extract some of the code in NettyChannelInitializer
for example.....NettyChannelInitializer
protocols("TLSv1.3", "TLSv1.2")
but for some reason following still working
openssl s_client -connect <ip address>:443 -tls1
protocols
call inside the if (alpnProvider != null)
block but that is actually null!
sslContext = SslContextBuilder.forServer(pk, *certs).apply {
protocols("TLSv1.3", "TLSv1.2")
if (alpnProvider != null) {
sslProvider(alpnProvider)
Aleksei Tirman [JB]
06/29/2022, 11:03 AMJohn O'Reilly
06/29/2022, 11:09 AM./gradlew publishToMavenLocal
and use mavenLocal()
in project using ktor (using custom version we're using) then it works fine. However, when I try to publish to gitlab maven repo I'm running in to some issues with symbols not found for a few of the artifacts (have updated publish.gradle
locally to point to our repo). Is there particular publication task I should run (have tried a few)?
Screenshot shows example....ktor-server-core
seems fine but having issues resolving symbols from `ktor-server-host-common`` for some reasonAleksei Tirman [JB]
07/14/2022, 9:38 AMe5l
07/14/2022, 9:55 AM2.1.0
this month if there are no breaking changesJohn O'Reilly
07/14/2022, 12:22 PMe5l
07/14/2022, 12:22 PMJohn O'Reilly
07/15/2022, 8:20 AM.api
file that needs to be updated?e5l
07/15/2022, 8:21 AM.api
with apiDump
gradle taskJohn O'Reilly
07/15/2022, 8:53 AMe5l
07/15/2022, 10:24 AMJohn O'Reilly
07/15/2022, 10:24 AMe5l
07/15/2022, 10:24 AMJohn O'Reilly
07/15/2022, 10:24 AMjvmTest
here locally fwiw and they had passede5l
07/15/2022, 11:05 AMJohn O'Reilly
08/03/2022, 12:34 PM