Skip to content

Commit 44c97fa

Browse files
committed
Merge pull request #449 from keflavich/ukidss_image_timeout
UKIDSS image retrieval should inherit from UKIDSS' timeout, not aud
2 parents 500ed06 + 583487d commit 44c97fa

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

astroquery/ukidss/core.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,9 @@ def get_images_async(self, coordinates, waveband='all', frame_type='stack',
274274
if verbose:
275275
print("Found {num} targets".format(num=len(image_urls)))
276276

277-
return [commons.FileContainer(U, encoding='binary') for U in image_urls]
277+
return [commons.FileContainer(U, encoding='binary',
278+
remote_timeout=self.TIMEOUT)
279+
for U in image_urls]
278280

279281
@validate_frame
280282
@validate_filter

0 commit comments

Comments
 (0)