Skip to content

Commit 9db2d0b

Browse files
authored
Merge pull request #127 from DrmagicE/dev
disable reload command
2 parents 2005bab + 9343202 commit 9db2d0b

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[中文文档](https://github.com/DrmagicE/gmqtt/blob/master/README_ZH.md)
22
# 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)
33

4-
News: Cluster mode is now supported, see [federation plugin](./plugin/federation/README.md) for examples and details.
54

65
# Features
76
* Provide hook method to customized the broker behaviours(Authentication, ACL, etc..). See `server/hooks.go` for details

README_ZH.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
# 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)
22

3-
News: 集群模式已支持,示例和详情请参考[federation plugin](./plugin/federation/README.md)
43

5-
Gmqtt是用Go语言实现的一个具备灵活灵活扩展能力,高性能的MQTT broker,其完整实现了MQTT V3.1.1和V5协议
4+
Gmqtt是用Go语言实现的一个具备灵活灵活扩展能力,高性能的MQTT broker,其完整实现了MQTT V3.x和V5协议
65

76
# 更多资料
87
[Gmqtt插件机制详解](https://juejin.cn/post/6908305981923409934)

cmd/gmqttd/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ func init() {
3737
command.ConfigFile = path.Join(configDir, "gmqttd.yml")
3838
rootCmd.PersistentFlags().StringVarP(&command.ConfigFile, "config", "c", command.ConfigFile, "The configuration file path")
3939
rootCmd.AddCommand(command.NewStartCmd())
40-
rootCmd.AddCommand(command.NewReloadCommand())
40+
//rootCmd.AddCommand(command.NewReloadCommand())
4141
}
4242

4343
func main() {

0 commit comments

Comments
 (0)