KSQL 忽略 Confluent Support Metric Collection 配置

KSQL ignores Confluent Support Metric Collection config

我已将以下行添加到我的 server.properties 文件中:

confluent.support.metrics.enable=false

但是,当 KSQL 启动时,它吐出以下内容:

Please note that the version check feature of KSQL is enabled.

...

By proceeding  with `confluent.support.metrics.enable=true`, you agree to
all such collection, transfer and use of Version information by Confluent. 
You can turn the version check  feature off by setting 
`confluent.support.metrics.enable=false` in the KSQL configuration and 
restarting the KSQL.  See the Confluent Platform documentation  for further information.

我知道这个属性文件正在被 KSQL 读取和解析,因为它正在提取其他配置(如代理信息)并且读取得很好。它基本上只是忽略了我关闭指标收集的请求。关于如何实际关闭它的任何想法?

这似乎是 KSQL 中的错误。它在这里修复: https://github.com/confluentinc/ksql/pull/2948