File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -9,12 +9,12 @@ import (
9
9
"strings"
10
10
"time"
11
11
12
- "github.com/docker/docker/api/types"
13
12
"github.com/docker/docker/api/types/container"
14
13
"github.com/docker/docker/api/types/events"
15
14
"github.com/docker/docker/api/types/filters"
16
15
"github.com/docker/docker/client"
17
16
"github.com/josegonzalez/cli-skeleton/command"
17
+ "github.com/moby/moby/api/types"
18
18
"github.com/posener/complete"
19
19
"github.com/rs/zerolog"
20
20
"github.com/rs/zerolog/log"
@@ -208,7 +208,7 @@ func watchEvents(ctx context.Context, sinceTimestamp int64) {
208
208
filters .Arg ("label" , DOKKU_APP_LABEL ),
209
209
filters .Arg ("label" , DOKKU_PROCESS_TYPE_LABEL ),
210
210
)
211
- events , errors := dockerClient .Events (ctx , types. EventsOptions {
211
+ events , errors := dockerClient .Events (ctx , events. ListOptions {
212
212
Since : strconv .FormatInt (sinceTimestamp , 10 ),
213
213
Filters : filters ,
214
214
})
You can’t perform that action at this time.
0 commit comments