Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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?

like image 919
SG1 Avatar asked Oct 06 '10 06:10

SG1


3 Answers

Basically, you need to clear out the transport tokens. This can happen if you were to close out of Xcode while in the middle of submitting an app to iTunes Connect.

The token files now appear in the

Library/Caches/com.apple.amp.itmstransporter/UploadTokens/ subfolder of the given user's home directory. Which, honestly, is a better place for them anyway.

Delete any .token files in this directory.

-- If you are unable to find the .token files, this is because they are hidden in Finder. To hide/show hidden files in Finder, use the following Terminal command (TRUE = UNHIDE, FALSE = HIDE):

defaults write com.apple.finder AppleShowAllFiles TRUE;killall Finder
like image 131
WrightsCS Avatar answered Nov 15 '22 16:11

WrightsCS


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.

like image 33
Pau Senabre Avatar answered Nov 15 '22 18:11

Pau Senabre


It might be because Xcode crashed as you were uploading your app. Either, all you need to do is delete the token files:

Open Terminal on your Mac, and paste:

rm ~/.itmstransporter/UploadTokens/*.token

That should clear it. If it still doesn't work (at this point you should try re-uploading your app), run that command on Terminal again, or manually go to...

/Users/<username>/.itmstransporter/UploadTokens/

...and delete all the .token files.

Hope that helps!

like image 42
Jack Solomon Avatar answered Nov 15 '22 17:11

Jack Solomon