Skip to content

Commit

Permalink
Mix format
Browse files Browse the repository at this point in the history
  • Loading branch information
vtm9 committed Aug 27, 2024
1 parent a82be7d commit 8e0ff78
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 40 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ defmodule Codebattle.AssertsService.Executor.Remote do
headers = [{"content-type", "application/json"}, {"x-auth-key", api_key()}]
body = Jason.encode!(params)

case Req.post("#{runner_url()}/api/v1/generate", body: body, headers: headers,
case Req.post("#{runner_url()}/api/v1/generate",
body: body,
headers: headers,
timeout: 30_000,
recv_timeout: 30_000
) do
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ defmodule Codebattle.TasksImporter do
{:noreply, state}
end


def fetch_issues do
File.rm_rf(@tmp_basedir)
File.mkdir_p!(@tmp_basedir)
Expand Down
Loading

0 comments on commit 8e0ff78

Please sign in to comment.