mirror of
https://github.com/labstack/echo.git
synced 2024-11-24 08:22:21 +02:00
7c7531002d
* Fix tests failing on Go 1.20 on Windows. Clean works differently on 1.20. Use path.Clean instead with some workaround related to errors.
13 lines
215 B
Go
13 lines
215 B
Go
//go:build !windows
|
|
|
|
package middleware
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
// We ignore these errors as there could be handler that matches request path.
|
|
func isIgnorableOpenFileError(err error) bool {
|
|
return os.IsNotExist(err)
|
|
}
|