diff --git a/.github/workflows/www.yaml b/.github/workflows/www.yaml index 1577a319f..f47b0aafc 100644 --- a/.github/workflows/www.yaml +++ b/.github/workflows/www.yaml @@ -4,15 +4,9 @@ on: branches: - master - "renovate/frontend/*" - paths: - - ".github/workflows/www.yaml" - - "www/**" pull_request: branches: - "**" - paths: - - ".github/workflows/www.yaml" - - "www/**" jobs: build: name: Build image diff --git a/apps/core/lib/core/retry.ex b/apps/core/lib/core/retry.ex index 96620ac28..bcebdd5e7 100644 --- a/apps/core/lib/core/retry.ex +++ b/apps/core/lib/core/retry.ex @@ -1,4 +1,6 @@ defmodule Core.Retry do + require Logger + defstruct [wait: 200, attempts: 0, max: 3] def retry(fun, args) when is_function(fun) and (is_list(args) or is_map(args)) do