You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Compiling Gollum with Elixir 1.9 shows the following warning:
warning: function init/1 required by behaviour GenServer is not implemented (in module Gollum.Cache).
We will inject a default implementation for now:
def init(init_arg) do
{:ok, init_arg}
end
You can copy the implementation above or define your own that converts the arguments given to GenServer.start_link/3 to the server state.
lib/gollum/cache.ex:1: Gollum.Cache (module)
Generated gollum app
The text was updated successfully, but these errors were encountered:
On 29 Jul 2019, at 15:38, Ravern Koh ***@***.***> wrote:
Fixed and published as v0.3.3.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or mute the thread.
Compiling Gollum with Elixir 1.9 shows the following warning:
The text was updated successfully, but these errors were encountered: