From 98b0e1538993b3b12ab04a59bf4898cc202a60b5 Mon Sep 17 00:00:00 2001 From: Andrew Barabash Date: Wed, 9 Oct 2024 17:57:16 +0200 Subject: [PATCH] Linter fix --- .github/workflows/build-test.yml | 2 +- internal/client/client.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 71bc3ac..08cad98 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -56,7 +56,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 15 services: - zk1: + zookeeper: image: zookeeper:3.5 ports: - 2181:2181 diff --git a/internal/client/client.go b/internal/client/client.go index a5661c7..5c02566 100644 --- a/internal/client/client.go +++ b/internal/client/client.go @@ -256,7 +256,7 @@ func (c *Client) Update(path string, data []byte, acl []zk.ACL) (*ZNode, error) return c.Read(path) } -// Close the connection +// Close the connection. func (c *Client) Close() { c.zkConn.Close() }