Comment 7 for bug 1810857

Revision history for this message
Rafael David Tinoco (rafaeldtinoco) wrote :

@rbasak,

On your question, the option is passed as an argument to EC2Metadata object and it calls:

    def _get(self, uri, decode=True):
        url = "%s/%s" % (self.burl, uri)
        try:
            resp = urllib_request.urlopen(urllib_request.Request(url))
            value = resp.read()

where uri == fixed spelling option.

Meaning that the http request would be broken no matter what and the spelling fix is not just cosmetic.

I also fixed the SRU template (I had done it only for the main bug of the 3, all 3 now have the template).

@Brian, I think this covers what you flagged as incomplete, pls let me know if not.