Skip to content

Commit

Permalink
Merge pull request #127 from DrmagicE/dev
Browse files Browse the repository at this point in the history
disable reload command
  • Loading branch information
DrmagicE authored Jul 2, 2021
2 parents 2005bab + 9343202 commit 9db2d0b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 1 addition & 2 deletions README_ZH.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion cmd/gmqttd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 9db2d0b

Please sign in to comment.