Update Support Go version (#143)

This commit is contained in:
ZhangJian He
2022-01-30 09:14:29 +08:00
committed by GitHub
parent bf2b91c535
commit 94ff8e8405
5 changed files with 6 additions and 6 deletions

View File

@@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
goversion: [ 1.15, 1.16, 1.17 ]
goversion: [ 1.17 ]
runs-on: ${{ matrix.os }}
steps:

View File

@@ -23,7 +23,7 @@ import (
)
const (
// special pub topic for cluster info BrokerInfoTopic
// BrokerInfoTopic special pub topic for cluster info
BrokerInfoTopic = "broker000100101info"
// CLIENT is an end user.
CLIENT = 0

View File

@@ -78,7 +78,7 @@ func (this *memTopics) Unsubscribe(topic []byte, sub interface{}) error {
return this.sroot.sremove(topic, sub)
}
// Returned values will be invalidated by the next Subscribers call
// Subscribers Returned values will be invalidated by the next Subscribers call
func (this *memTopics) Subscribers(topic []byte, qos byte, subs *[]interface{}, qoss *[]byte) error {
if !ValidQos(qos) {
return fmt.Errorf("Invalid QoS %d", qos)

View File

@@ -37,14 +37,14 @@ func AclConfigLoad(file string) (*ACLConfig, error) {
File: file,
Info: make([]*AuthInfo, 0, 4),
}
err := aclconifg.Prase()
err := aclconifg.Parse()
if err != nil {
return nil, err
}
return aclconifg, err
}
func (c *ACLConfig) Prase() error {
func (c *ACLConfig) Parse() error {
f, err := os.Open(c.File)
defer f.Close()
if err != nil {

View File

@@ -56,7 +56,7 @@ func Init() *authHTTP {
return &authHTTP{client: httpClient}
}
//CheckAuth check mqtt connect
// CheckConnect check mqtt connect
func (a *authHTTP) CheckConnect(clientID, username, password string) bool {
action := "connect"
{