Skip to content

AtlasGeoModel: Tolerate potential races.

Scott Snyder requested to merge ssnyder/athena:race.AtlasGeoModel-20240625 into main

If multiple jobs are running, there may be a race between

    if not os.path.exists("Geometry"):

and

        os.mkdir("Geometry")

Ignore errors from the mkdir if the file already exists.

Merge request reports