We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When trying to consume Bitly-messages the basic configuration looks like this.
consumer = Krakow::Consumer.new( :nsqlookupd => 'https://api-ssl.bitly.com/v3/nsq/lookup?access_token=xxx', :topic => 'topic', :channel => 'channel' } )
Using krakow this will not work, because Krakow::Discovery overwrites path and query hard with its own values.
Krakow::Discovery
path
query
Problematic lines:
uri = URI.parse(location) uri.path = '/lookup' uri.query = "topic=#{topic}&ts=#{Time.now.to_i}"
Don't know why this is done.
The text was updated successfully, but these errors were encountered:
Trying to fix here: #29
Sorry, something went wrong.
No branches or pull requests
When trying to consume Bitly-messages the basic configuration looks like this.
Using krakow this will not work, because
Krakow::Discovery
overwritespath
andquery
hard with its own values.Problematic lines:
Don't know why this is done.
The text was updated successfully, but these errors were encountered: