Application Loader: "Cannot proceed with delivery: an existing transporter instance is currently uploading this package"

Viewed 34001

I have been unable to overcome this error in Application Loader. I've quit, restarted, tried different computers - it's like the server is hung up on an op that I never initiated and it won't time out. Has anyone seen it before and beaten it?

7 Answers

You need to clear out the transport tokens.

Open Terminal on your Mac, and paste:

rm /Users/<username>/Library/Caches/com.apple.amp.itmstransporter/UploadTokens/*.token

That should clear the stuck token. After this, try uploading the build again.

token was in here

/Users/(user_name)/Library/Caches/com.apple.amp.itmstransporter/UploadTokens/

In my case (I am using OSX Catalina), I was not able to find the folder:

Library/Caches/com.apple.amp.itmstransporter/UploadTokens/

Under my user home directory (even when showing hidden files and folders)

but it seems my problem was a bit different and I just closed xCode completely (every xCode window opened) and reopened it again then I archived my project and uploaded it without any issues

maybe this could help someone else fix this issue

Related