Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
SUSE:SLE-15-SP7:Update
google-compute-engine
gcei-waitlimit-dns.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File gcei-waitlimit-dns.patch of Package google-compute-engine
--- packages/python-google-compute-engine/google_compute_engine/metadata_watcher.py.orig +++ packages/python-google-compute-engine/google_compute_engine/metadata_watcher.py @@ -154,7 +154,7 @@ class MetadataWatcher(object): def _HandleMetadataUpdate( self, metadata_key='', recursive=True, wait=True, timeout=None, - retry=True): + retry=True, retry_limit=50): """Wait for a successful metadata response. Args: @@ -163,12 +163,14 @@ class MetadataWatcher(object): wait: bool, True if we should wait for a metadata change. timeout: int, timeout in seconds for returning metadata output. retry: bool, True if we should retry on failure. + retry_limit: int, number of times to retry obtaining metadata. Returns: json, the deserialized contents of the metadata server. """ exception = None - while True: + retry_count = 0 + while retry_count < retry_limit: try: return self._GetMetadataUpdate( metadata_key=metadata_key, recursive=recursive, wait=wait, @@ -178,6 +180,7 @@ class MetadataWatcher(object): exception = e self.logger.error('GET request error retrieving metadata. %s.', e) if retry: + retry_count += 1 continue else: break
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor