Skip to content

Commit 442f86e

Browse files
committed
Fix linting issues
Signed-off-by: Dom Del Nano <ddelnano@gmail.com>
1 parent 7d4f0a2 commit 442f86e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/utils/testingutils/docker/elastic.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,23 +70,23 @@ func SetupElastic() (*elastic.Client, func(), error) {
7070
Type: "tmpfs",
7171
TempfsOptions: &docker.TempfsOptions{
7272
SizeBytes: 100 * 1024 * 1024,
73-
Mode: 0777,
73+
Mode: 0o777,
7474
},
7575
},
7676
{
7777
Target: "/opt/elasticsearch/volatile/logs",
7878
Type: "tmpfs",
7979
TempfsOptions: &docker.TempfsOptions{
8080
SizeBytes: 100 * 1024 * 1024,
81-
Mode: 0777,
81+
Mode: 0o777,
8282
},
8383
},
8484
{
8585
Target: "/tmp",
8686
Type: "tmpfs",
8787
TempfsOptions: &docker.TempfsOptions{
8888
SizeBytes: 100 * 1024 * 1024,
89-
Mode: 0777,
89+
Mode: 0o777,
9090
},
9191
},
9292
}

0 commit comments

Comments
 (0)