We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14e24bf commit b412151Copy full SHA for b412151
bundledApps/WAIL.py
@@ -472,9 +472,6 @@ def fetch_mementos(self): # MemGator in server mode
472
time.sleep(500)
473
tm = self.memgator.get_timemap(current_uri_value, 'cdxj').split('\n')
474
475
- # TODO: bug, on Gogo internet MemGator cannot hit aggregator, which
476
- # results in 0 mementos, for which MemGator throws exception
477
-
478
m_count = 0
479
arch_hosts = set()
480
@@ -1717,6 +1714,9 @@ def get_flags(self):
1717
1714
def get_timemap(self, uri, timemap_format=config.memgator_format):
1718
1715
tm_uri = f'{config.uri_aggregator}timemap/{timemap_format}/{uri}'
1719
1716
resp = requests.get(tm_uri)
+
+ if 'text/plain' in resp.headers['content-type']: # 404, no mementos
+ return ""
1720
self.last_uri = tm_uri
1721
return resp.text
1722
0 commit comments