Add String method to audit.Backend interface
Kubernetes-commit: 416a478cf6e4ea2aaecf5108aade563c9fc3fc53
This commit is contained in:
parent
563a7d9b06
commit
bc8364d7ab
|
|
@ -39,4 +39,7 @@ type Backend interface {
|
||||||
// events are delivered. It can be assumed that this method is called after
|
// events are delivered. It can be assumed that this method is called after
|
||||||
// the stopCh channel passed to the Run method has been closed.
|
// the stopCh channel passed to the Run method has been closed.
|
||||||
Shutdown()
|
Shutdown()
|
||||||
|
|
||||||
|
// Returns the backend PluginName.
|
||||||
|
String() string
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -40,6 +40,10 @@ func (f *fakeBackend) Shutdown() {
|
||||||
// Nothing to do here.
|
// Nothing to do here.
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (f *fakeBackend) String() string {
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
func TestUnion(t *testing.T) {
|
func TestUnion(t *testing.T) {
|
||||||
backends := []Backend{
|
backends := []Backend{
|
||||||
new(fakeBackend),
|
new(fakeBackend),
|
||||||
|
|
|
||||||
|
|
@ -44,3 +44,7 @@ func (b *Backend) ProcessEvents(ev ...*auditinternal.Event) {
|
||||||
b.OnRequest(ev)
|
b.OnRequest(ev)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (b *Backend) String() string {
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue