diff options
author | Valery Piashchynski <[email protected]> | 2021-07-15 00:28:11 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-07-15 00:28:11 +0300 |
commit | f4feb30197843d05eb308081ee579d3a9e3d6206 (patch) | |
tree | df1a9f9ed83830f2876d7c98c7822b8129b87be1 /plugins/jobs/plugin.go | |
parent | 05055561600a240401f6e48e5b6c195d01050d45 (diff) |
Remove duplicated logging
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'plugins/jobs/plugin.go')
-rw-r--r-- | plugins/jobs/plugin.go | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/plugins/jobs/plugin.go b/plugins/jobs/plugin.go index ce51df21..f71c2718 100644 --- a/plugins/jobs/plugin.go +++ b/plugins/jobs/plugin.go @@ -142,20 +142,12 @@ func (p *Plugin) Serve() chan error { //nolint:gocognit errCh <- errors.E(op, err) return false } - - p.events.Push(events.JobEvent{ - Event: events.EventPipeRun, - Pipeline: pipe.Name(), - Driver: pipe.Driver(), - Start: t, - Elapsed: t.Sub(t), - }) - return true } return true } + p.events.Push(events.JobEvent{ Event: events.EventDriverReady, Pipeline: pipe.Name(), |