Replace bool map with struct{} map in chaos plugin (#2384)

Automatically submitted.
This commit is contained in:
Yong Tang
2018-12-08 15:57:57 -08:00
committed by corbot[bot]
parent 95546dfdfe
commit c788649a00
3 changed files with 5 additions and 5 deletions

View File

@@ -16,7 +16,7 @@ import (
type Chaos struct {
Next plugin.Handler
Version string
Authors map[string]bool
Authors map[string]struct{}
}
// ServeDNS implements the plugin.Handler interface.