fix GetIsInsecure

This commit is contained in:
Tan Jiang 2016-11-18 19:13:23 +08:00
parent 35407d12db
commit aab3dfee4e

View File

@ -213,5 +213,5 @@ func (b *BaseAPI) GetPaginationParams() (page, pageSize int64) {
// GetIsInsecure ...
func GetIsInsecure() bool {
return config.VerifyRemoteCert()
return !config.VerifyRemoteCert()
}