mirror of
https://github.com/grafana/grafana.git
synced 2026-07-30 08:18:10 -05:00
10 lines
200 B
Go
10 lines
200 B
Go
package serverlock
|
|
|
|
type ServerLockExistsError struct {
|
|
actionName string
|
|
}
|
|
|
|
func (e *ServerLockExistsError) Error() string {
|
|
return "there is already a lock for this actionName: " + e.actionName
|
|
}
|