We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a12520 commit 629326eCopy full SHA for 629326e
lib/algolia.ex
@@ -41,7 +41,8 @@ defmodule Algolia do
41
42
defp host(:read, 0), do: "#{application_id()}-dsn.algolia.net"
43
defp host(:write, 0), do: "#{application_id()}.algolia.net"
44
- defp host(:insights, 0), do: "insights.algolia.io"
+
45
+ defp host(:insights, _curr_retry), do: "insights.algolia.io"
46
47
defp host(_subdomain_hint, curr_retry) when curr_retry <= 3,
48
do: "#{application_id()}-#{curr_retry}.algolianet.com"
0 commit comments