Pull request for #210
Without these code changes I receive the error
** (Mix) Could not start application testdep: Application.start(:normal, []) returned an error: shutdown: failed to start child: B
** (EXIT) no process: the process is not alive or there's no process currently associated with the given name, possibly because its application isn't started
After applying the code changes on start_link/1 the application starts correctly and starts counting:
I didnt suggest to add the named module on consumer GenStage.start_link(C, :ok) because nobody is going to subscribe to the consumer but maybe is a good practice to always name the process, I am not sure about that.
Pull request for #210 Without these code changes I receive the error
After applying the code changes on start_link/1 the application starts correctly and starts counting:
I didnt suggest to add the named module on consumer GenStage.start_link(C, :ok) because nobody is going to subscribe to the consumer but maybe is a good practice to always name the process, I am not sure about that.