diff --git a/README.md b/README.md index ef962223..95597f70 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,6 @@ [中文文档](https://github.com/DrmagicE/gmqtt/blob/master/README_ZH.md) # Gmqtt [![Mentioned in Awesome Go](https://awesome.re/mentioned-badge.svg)](https://github.com/avelino/awesome-go) ![Build Status](https://github.com/DrmagicE/gmqtt/actions/workflows/test.yml/badge.svg) [![codecov](https://codecov.io/gh/DrmagicE/gmqtt/branch/master/graph/badge.svg)](https://codecov.io/gh/DrmagicE/gmqtt) [![Go Report Card](https://goreportcard.com/badge/github.com/DrmagicE/gmqtt)](https://goreportcard.com/report/github.com/DrmagicE/gmqtt) -News: Cluster mode is now supported, see [federation plugin](./plugin/federation/README.md) for examples and details. # Features * Provide hook method to customized the broker behaviours(Authentication, ACL, etc..). See `server/hooks.go` for details diff --git a/README_ZH.md b/README_ZH.md index b868dc67..0b4a5048 100644 --- a/README_ZH.md +++ b/README_ZH.md @@ -1,8 +1,7 @@ # Gmqtt [![Mentioned in Awesome Go](https://awesome.re/mentioned-badge.svg)](https://github.com/avelino/awesome-go) ![Build Status](https://github.com/DrmagicE/gmqtt/actions/workflows/test.yml/badge.svg) [![codecov](https://codecov.io/gh/DrmagicE/gmqtt/branch/master/graph/badge.svg)](https://codecov.io/gh/DrmagicE/gmqtt) [![Go Report Card](https://goreportcard.com/badge/github.com/DrmagicE/gmqtt)](https://goreportcard.com/report/github.com/DrmagicE/gmqtt) -News: 集群模式已支持,示例和详情请参考[federation plugin](./plugin/federation/README.md)。 -Gmqtt是用Go语言实现的一个具备灵活灵活扩展能力,高性能的MQTT broker,其完整实现了MQTT V3.1.1和V5协议。 +Gmqtt是用Go语言实现的一个具备灵活灵活扩展能力,高性能的MQTT broker,其完整实现了MQTT V3.x和V5协议。 # 更多资料 [Gmqtt插件机制详解](https://juejin.cn/post/6908305981923409934) diff --git a/cmd/gmqttd/main.go b/cmd/gmqttd/main.go index 151a359a..a0ca5ff8 100644 --- a/cmd/gmqttd/main.go +++ b/cmd/gmqttd/main.go @@ -37,7 +37,7 @@ func init() { command.ConfigFile = path.Join(configDir, "gmqttd.yml") rootCmd.PersistentFlags().StringVarP(&command.ConfigFile, "config", "c", command.ConfigFile, "The configuration file path") rootCmd.AddCommand(command.NewStartCmd()) - rootCmd.AddCommand(command.NewReloadCommand()) + //rootCmd.AddCommand(command.NewReloadCommand()) } func main() {