-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: handle panic in rpc rate limit interceptor
- Loading branch information
1 parent
a1e2a4f
commit 81439cc
Showing
4 changed files
with
57 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package middleware | ||
|
||
import ( | ||
"fmt" | ||
|
||
"github.com/hashicorp/go-hclog" | ||
) | ||
|
||
// NewPanicHandler returns a RecoveryHandlerFunc type function | ||
// to handle panic in RPC server's handlers. | ||
func NewPanicHandler(logger hclog.Logger) RecoveryHandlerFunc { | ||
return func(p interface{}) (err error) { | ||
// Log the panic and the stack trace of the Goroutine that caused the panic. | ||
stacktrace := hclog.Stacktrace() | ||
logger.Error("panic serving rpc request", | ||
"panic", p, | ||
"stack", stacktrace, | ||
) | ||
|
||
return fmt.Errorf("rpc: panic serving request") | ||
} | ||
} | ||
|
||
type RecoveryHandlerFunc func(p interface{}) (err error) |