Ian Vaughan
Ian Vaughan
Version 3.1.1 has now been released https://rubygems.org/gems/config/versions/3.1.1 As per issue here https://github.com/rubyconfig/config/issues/313#issuecomment-1005390643 So this can now be updated and released.
What ruby manager are you using? `rbenv`? If so did you `rbenv rehash`?
It would help me a lot, as I have some changes that I've only made in 0.9 server module at present, so if it's deprecated then I can hold off...
How would this be best done? Completely remove the < 0.9 server modules? Or phase it, so initially add some form of depreciation warning if the `kafka_version` is less than...
The problem is also hard to handle when implementing my own custom consumer : ``` iex(3)> KafkaEx.create_worker(:tl, [consumer_group: "tracking_locations"]) 12:49:28.579 [error] Could not connect to broker "localhost":9092 because of error...
> how would kafka_ex tell the application that it lost the kafka connection? That is a good question, my original question is really only aimed at application startup, and the...
> optimally to make it rescueable I did look at this, but to my current knowledge I belive its hard to do, as the raise is within the Supervisor callstack...
Thinking out loud on here, and having had a quick play, it may be more involved than I first thought. As returning `{:stop, reason}` from `init` from a child of...
@joshrotenberg thats good news, as I am 50% way done with a bit of a reorg. A brief overview is that I've split the `GonsumerGroup.Manager` boot sequence out of the...
I have this now, although it was working when I initially implemented it, it now doesn't! ``` require "s3" service = S3::Service.new( :access_key_id => ENV['ACCESS_KEY_ID'], :secret_access_key => ENV['SECRET_ACCESS_KEY'] ) bucket_name...