Из источника: https://github.com/jenkinsci/jenkins/blob/master/core/src/main/java/hudson/TcpSlaveAgentListener.java
Похоже, что нет никакого механизма, чтобы отключить его, и, согласно комментариям, кажется, что только для тестирования:
String header = new String(head, Charsets.US_ASCII);
if (header.startsWith("GET ")) {
// this looks like an HTTP client
respondHello(header,s);
return;
}
// otherwise assume this is AgentProtocol and start from the beginning
(...)
/**
* Respond to HTTP request with simple diagnostics.
* Primarily used to test the low-level connectivity.
*/
private void respondHello(String header, Socket s) throws IOException {
(...)
Если infose c требует, чтобы вы отключили это, вам может понадобиться открыть билет поддержки с облачными пчелами.