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
I'm trying to compare a production and a pre-production org, and except for labels, all items are declared to be existing on one side and not on the other, whereas they clearly physically exist on both sides
Is there some workaround ?
Thanks !
The text was updated successfully, but these errors were encountered:
Running locally I think it has to do with concurrent read/write to metadata.zip. I did something like this for retreive_files@tasks.py
os.makedirs("meta/{}/{}".format(slugify(org.username), component_type), exist_ok=True)
zipname="meta/{}/{}/{}.zip".format(slugify(org.username), component_type, component_type)
ifos.path.isfile(zipname):
os.remove(zipname)
# Save the zip file result to serverzip_file=open(zipname, 'wb')
...
metadata=ZipFile(zipname, 'r')
I'm trying to compare a production and a pre-production org, and except for labels, all items are declared to be existing on one side and not on the other, whereas they clearly physically exist on both sides
Is there some workaround ?
Thanks !
The text was updated successfully, but these errors were encountered: