diff options
author | Scott Moser <smoser@ubuntu.com> | 2010-01-23 13:58:03 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2010-01-23 13:58:03 -0500 |
commit | 8938982d6ab1e3843004e19c485f73e3401c767a (patch) | |
tree | d88636fd612672653d9c42db00e905e600cd1b89 /ec2init/boto_utils.py | |
parent | 350fde45ba0b98d2e792a77fa9b69c31a5bda1f7 (diff) | |
download | vyos-cloud-init-8938982d6ab1e3843004e19c485f73e3401c767a.tar.gz vyos-cloud-init-8938982d6ab1e3843004e19c485f73e3401c767a.zip |
comment out unusable call to boto.log.exception in boto_utils.py
Diffstat (limited to 'ec2init/boto_utils.py')
-rw-r--r-- | ec2init/boto_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ec2init/boto_utils.py b/ec2init/boto_utils.py index 0e821ea1..2f9de95f 100644 --- a/ec2init/boto_utils.py +++ b/ec2init/boto_utils.py @@ -52,7 +52,7 @@ def retry_url(url, retry_on_404=True): return '' except: pass - boto.log.exception('Caught exception reading instance data') + #boto.log.exception('Caught exception reading instance data') sys.stderr.write('Caught exception reading instance data') time.sleep(2**i) #boto.log.error('Unable to read instance data, giving up') |