[pkg-eucalyptus-commits] [SCM] managing cloud instances for Eucalyptus branch, master, updated. 3.0.0-alpha3-257-g1da8e3a

Garrett Holmstrom gholms at fedoraproject.org
Sun Jun 16 02:31:17 UTC 2013


The following commit has been merged in the master branch:
commit bb9dcaae82f5060bb8facea16157758db01c7610
Author: Garrett Holmstrom <gholms at fedoraproject.org>
Date:   Tue May 7 13:04:54 2013 -0700

    Fix param type conversion in EucaRsaV2Auth

diff --git a/euca2ools/nc/auth.py b/euca2ools/nc/auth.py
index 1fadc29..aeb85bd 100644
--- a/euca2ools/nc/auth.py
+++ b/euca2ools/nc/auth.py
@@ -163,7 +163,7 @@ class EucaRsaV2Auth(BaseAuth):
         return headers
 
     def _get_canonical_headers(self, headers):
-        header_strs = [key.lower().strip() + ':' + val.strip()
+        header_strs = [str(key).lower().strip() + ':' + str(val).strip()
                        for key, val in headers.iteritems()]
         return '\n'.join(sorted(header_strs))
 

-- 
managing cloud instances for Eucalyptus



More information about the pkg-eucalyptus-commits mailing list