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
So this causes sinatra to break when I submit requests of that form (i.e. /:acctid/:queue) for SendMessage other things work fine.
The library I'm using, https://github.com/aristidb/aws doesn't allow me to modify the path parameters because the spec should always abide by /:acctid/:qeueue for SendMessage, is there a way I can modify this handler to account for this scenario (and just ignore acctid altogether?).
So the according to the AWS spec for SQS (2012-11-05) a
SendMessage
request has this form.You'll notice here the URL looks like this:
http://sqs.us-east-1.amazonaws.com/123456789012/testQueue/ # http://sqs.us-east-1.amazonaws.com/:acctid/:queue
But the sinatra handler we have only accounts for queue name.
So this causes sinatra to break when I submit requests of that form (i.e.
/:acctid/:queue
) forSendMessage
other things work fine.The library I'm using, https://github.com/aristidb/aws doesn't allow me to modify the path parameters because the spec should always abide by
/:acctid/:qeueue
forSendMessage
, is there a way I can modify this handler to account for this scenario (and just ignoreacctid
altogether?).Sorry I'm newish to ruby. But is there a way I can generate a new binary based off this additional handler?
The text was updated successfully, but these errors were encountered: