0width
Results
1
comments of
0width
我使用的版本是1.7.1,我也遇到了这个问题,原因是阿里云的集群模式使用了代理,其实阿里云的代理模式可以看成非集群模式,但是执行info命令的时候返回cluster_enabled=1,所以判断成了集群模式。我修改了components/Status.vue的237行,添加了一个proxy_run_id的判断,因为之后代理模式才回返回proxy_run_id。代码如下: isCluster() { return this.connectionStatus['cluster_enabled'] == '1' && !this.connectionStatus['proxy_run_id']; },