This is an automated email from the ASF dual-hosted git repository. twolf pushed a commit to branch dev_3.0 in repository https://gitbox.apache.org/repos/asf/mina-sshd.git
commit e173cb7d6fc86f310cc8f6bb693e6792a23265d6 Author: Thomas Wolf <[email protected]> AuthorDate: Thu Sep 25 22:52:37 2025 +0200 [releng] SOCKS proxy no-auth test needs a new env var serjs/go-socks5-proxy has been changed to forbid unauthenticated access by default. Set the newly required environment variable. --- .../java/org/apache/sshd/client/proxy/ProxySocksIntegrationTest.java | 1 + 1 file changed, 1 insertion(+) diff --git a/sshd-test/src/test/java/org/apache/sshd/client/proxy/ProxySocksIntegrationTest.java b/sshd-test/src/test/java/org/apache/sshd/client/proxy/ProxySocksIntegrationTest.java index a7f9f5542..458ca170a 100644 --- a/sshd-test/src/test/java/org/apache/sshd/client/proxy/ProxySocksIntegrationTest.java +++ b/sshd-test/src/test/java/org/apache/sshd/client/proxy/ProxySocksIntegrationTest.java @@ -48,6 +48,7 @@ class ProxySocksIntegrationTest extends AbstractContainerTestBase { private static final Logger LOG = LoggerFactory.getLogger(ProxySocksIntegrationTest.class); private static GenericContainer<?> proxy = new GenericContainer<>("serjs/go-socks5-proxy") // + .withEnv("REQUIRE_AUTH", "false") // .withExposedPorts(1080) // .withLogConsumer(new Slf4jLogConsumer(LOG));
