Fix the value of ginSupportMinGoVer constant by semantic (#3221)

This commit is contained in:
mstmdev
2022-07-01 10:31:31 +08:00
committed by GitHub
parent 92dd245c9b
commit 088cdd74d4
2 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@ import (
"strings"
)
const ginSupportMinGoVer = 14
const ginSupportMinGoVer = 15
// IsDebugging returns true if the framework is running in debug mode.
// Use SetMode(gin.ReleaseMode) to disable debug mode.
@ -66,7 +66,7 @@ func getMinVer(v string) (uint64, error) {
}
func debugPrintWARNINGDefault() {
if v, e := getMinVer(runtime.Version()); e == nil && v <= ginSupportMinGoVer {
if v, e := getMinVer(runtime.Version()); e == nil && v < ginSupportMinGoVer {
debugPrint(`[WARNING] Now Gin requires Go 1.15+.
`)