forked from AkkomaGang/akkoma
where were you when lint fail
This commit is contained in:
parent
9671cdecdf
commit
010e8c7bb2
1 changed files with 8 additions and 2 deletions
|
@ -15,7 +15,10 @@ defp next_backoff_timestamp(%{headers: headers}) when is_list(headers) do
|
|||
|
||||
case Enum.find_value(headers, fn {"x-ratelimit-reset", value} -> value end) do
|
||||
nil ->
|
||||
Logger.error("Rate limited, but couldn't find timestamp! Using default 5 minute backoff until #{default_5_minute_backoff}")
|
||||
Logger.error(
|
||||
"Rate limited, but couldn't find timestamp! Using default 5 minute backoff until #{default_5_minute_backoff}"
|
||||
)
|
||||
|
||||
default_5_minute_backoff
|
||||
|
||||
value ->
|
||||
|
@ -24,7 +27,10 @@ defp next_backoff_timestamp(%{headers: headers}) when is_list(headers) do
|
|||
stamp
|
||||
else
|
||||
_ ->
|
||||
Logger.error("Rate limited, but couldn't parse timestamp! Using default 5 minute backoff until #{default_5_minute_backoff}")
|
||||
Logger.error(
|
||||
"Rate limited, but couldn't parse timestamp! Using default 5 minute backoff until #{default_5_minute_backoff}"
|
||||
)
|
||||
|
||||
default_5_minute_backoff
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue