You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are using astroquery.gaia in a multiprocessing environment and we see failures with temporary output files created jusing now.strftime("%Y%m%d_%H%M%S") fail due to those not being unique.
Please consider either adding precision using now.strftime("%Y%m%d_%H%M%S.%f") or using mkdtemp() to get guaranteed unique directories/files.
We are using astroquery.gaia in a multiprocessing environment and we see failures with temporary output files created jusing now.strftime("%Y%m%d_%H%M%S") fail due to those not being unique.
Please consider either adding precision using now.strftime("%Y%m%d_%H%M%S.%f") or using mkdtemp() to get guaranteed unique directories/files.
See for example https://github.com/astropy/astroquery/blob/main/astroquery/gaia/core.py#L242 and #L248
The text was updated successfully, but these errors were encountered: