From 74435542dca9ecad676b03e56d3df65e852b6ae6 Mon Sep 17 00:00:00 2001 From: Eduardo Tsen Date: Wed, 4 Feb 2026 21:46:09 +0100 Subject: [PATCH] fix system events params --- lib/docker-client.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/docker-client.ts b/lib/docker-client.ts index fd0b3d0..9976e3b 100644 --- a/lib/docker-client.ts +++ b/lib/docker-client.ts @@ -370,9 +370,7 @@ export class DockerClient { until?: string; filters?: Filter; }): AsyncGenerator { - const response = await this.api.get('/events', APPLICATION_NDJSON, { - params: options, - }); + const response = await this.api.get('/events', APPLICATION_NDJSON, options); yield* jsonMessages(response); }