diff options
author | Valery Piashchynski <[email protected]> | 2021-04-30 11:44:07 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-04-30 11:44:07 +0300 |
commit | 50aa751dcefc0ab0e96594a5f111ead316a34a70 (patch) | |
tree | 5cf1fd278e01e1bd23a3f39d408ceb49741c448c /plugins/http | |
parent | 65015a3d3f4b387675b5ca005b8831a6be9e15aa (diff) |
- Update Lister implementation
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'plugins/http')
-rw-r--r-- | plugins/http/plugin.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/http/plugin.go b/plugins/http/plugin.go index 2b1dec89..cf6d75fd 100644 --- a/plugins/http/plugin.go +++ b/plugins/http/plugin.go @@ -440,3 +440,8 @@ func (s *Plugin) Ready() status.Status { Code: http.StatusServiceUnavailable, } } + +// Available interface implementation +func (s *Plugin) Available() bool { + return true +} |