2024-04-28 13:08:41 +02:00
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
// SPDX-FileCopyrightText: © 2015 LabStack LLC and Echo contributors
|
|
|
|
|
2023-03-17 13:19:17 +01:00
|
|
|
//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)
|
|
|
|
}
|