Bug #516
Fix issue with Signature generation in EC2QueryServer
Status: | Closed | Start date: | 03/04/2011 | |
---|---|---|---|---|
Priority: | Normal | Due date: | ||
Assignee: | Daniel Molina | % Done: | 100% | |
Category: | - | |||
Target version: | Release 2.2 | |||
Resolution: | fixed | Pull request: | ||
Affected Versions: |
Description
Depending on the API version the port should be included in the Signature generation:
For example:
Using last version of amazon-ec2 gem the port must be included
params['Version'] = 2010-08-31 server_str = server_str + ":" + @server_port unless %w{2008-12-01 2010-08-31}.include? params["Version"]
Using euca2ools v1.2 the port mustn't be included.
params['Version'] = 2009-11-30 server_str = server_str + ":" + @server_port unless %w{2010-08-31}.include? params["Version"]
Associated revisions
Bug #516: Fix issue with Signature generation in EC2QueryServer
Bug #516: Fix issue with Signature generation in EC2QueryServer(cherry picked from commit 5308cba5fec6b818a6e6dd7ee2fe49afa8b44f92)
History
#1 Updated by Ruben S. Montero over 10 years ago
- Target version set to Release 3.0
#2 Updated by Daniel Molina over 10 years ago
- Status changed from New to Closed
- Target version changed from Release 3.0 to Release 2.2
- % Done changed from 0 to 100
- Resolution set to fixed
Fixed and tested