mirror of https://github.com/alibaba/arthas.git
fix agent channel client stream leaks of 3.5.3
parent
2102fc6929
commit
303efc6cad
@ -0,0 +1,19 @@
|
||||
package com.alibaba.arthas.channel.common;
|
||||
|
||||
public interface ChannelFeatures {
|
||||
|
||||
/**
|
||||
* Support execute command
|
||||
* @see com.alibaba.arthas.channel.proto.RequestAction
|
||||
* @see com.alibaba.arthas.channel.proto.ActionRequest
|
||||
*/
|
||||
String EXECUTE_COMMAND = "ExecuteCommand";
|
||||
|
||||
/**
|
||||
* Support proxying web console
|
||||
* @see com.alibaba.arthas.channel.proto.RequestAction
|
||||
* @see com.alibaba.arthas.channel.proto.ActionRequest
|
||||
*/
|
||||
String WEB_CONSOLE = "WebConsole";
|
||||
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
package com.alibaba.arthas.channel.common;
|
||||
|
||||
public interface ChannelVersions {
|
||||
// first version
|
||||
String V_1_0_0 = "1.0.0";
|
||||
|
||||
// support streaming heartbeat
|
||||
String V_1_1_0 = "1.1.0";
|
||||
}
|
Loading…
Reference in New Issue