mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-19 16:00:13 -05:00
If plugin process crashes, benchmark or dashboard runs can leave running plugin processes after shutdown. Fixes #3598
9 lines
196 B
Go
9 lines
196 B
Go
package contexthelpers
|
|
|
|
// https://medium.com/@matryer/context-keys-in-go-5312346a868d
|
|
type ContextKey string
|
|
|
|
func (c ContextKey) String() string {
|
|
return "steampipe context key " + string(c)
|
|
}
|