diff options
| author | Paul Buetow <pbuetow@mimecast.com> | 2020-09-04 17:23:21 +0300 |
|---|---|---|
| committer | Paul Buetow <pbuetow@mimecast.com> | 2020-09-04 17:23:21 +0300 |
| commit | edee62717fbe752556d702c029a5b39de1b04677 (patch) | |
| tree | e3c6d99d7a08e0005fd6340c664fb11912b89679 /internal/clients/runclient.go | |
| parent | c562a013ef7e40e3a7f6126a6d327552f2bc557f (diff) | |
fix regex bug
Diffstat (limited to 'internal/clients/runclient.go')
| -rw-r--r-- | internal/clients/runclient.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/internal/clients/runclient.go b/internal/clients/runclient.go index 9f8e478..5464d54 100644 --- a/internal/clients/runclient.go +++ b/internal/clients/runclient.go @@ -38,7 +38,9 @@ func NewRunClient(args Args, background, jobName string) (*RunClient, error) { background: background, } - c.init(c) + c.init() + c.makeConnections(c) + return &c, nil } |
