mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-23 17:20:24 +08:00
557383fbbf
* feat: verify RpcPath on startup * feat: support http header Grpc-Timeout
20 lines
433 B
Go
20 lines
433 B
Go
package internal
|
|
|
|
import (
|
|
"net/http"
|
|
"time"
|
|
)
|
|
|
|
const grpcTimeoutHeader = "Grpc-Timeout"
|
|
|
|
// GetTimeout returns the timeout from the header, if not set, returns the default timeout.
|
|
func GetTimeout(header http.Header, defaultTimeout time.Duration) time.Duration {
|
|
if timeout := header.Get(grpcTimeoutHeader); len(timeout) > 0 {
|
|
if t, err := time.ParseDuration(timeout); err == nil {
|
|
return t
|
|
}
|
|
}
|
|
|
|
return defaultTimeout
|
|
}
|