Skip to content

Commit

Permalink
Remove unnecessary linter exclusion.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerrit91 committed Sep 19, 2023
1 parent d39e57b commit 423ce08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/internal/database/meilisearch/meilisearch.go
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ func (db *Meilisearch) importDump(ctx context.Context, dump string) error {
)

args := []string{"--import-dump", dump, "--master-key", db.apikey, "--dump-dir", constants.RestoreDir, "--db-path", db.datadir, "--http-addr", "localhost:1"}
cmd := exec.CommandContext(ctx, meilisearchCmd, args...) // nolint:gosec
cmd := exec.CommandContext(ctx, meilisearchCmd, args...)
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr

Expand Down

0 comments on commit 423ce08

Please sign in to comment.