应用程序加载器:“无法继续传送:现有传输器实例当前正在上传此包”

发布于 2024-09-26 10:42:04 字数 86 浏览 5 评论 0原文

我一直无法克服应用程序加载器中的此错误。我已经退出,重新启动,尝试了不同的计算机 - 就像服务器挂在我从未启动过的操作上,并且不会超时。有人见过并打败过它吗?

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(7

清风挽心 2024-10-03 10:42:04

基本上,您需要清除传输令牌。如果您在向 iTunes Connect 提交应用程序的过程中关闭 Xcode,则可能会发生这种情况。

令牌文件现在出现在

给定用户主目录的

Library/Caches/com.apple.amp.itmstransporter/UploadTokens/ 子文件夹。老实说,无论如何,这对他们来说是一个更好的地方。

删除此目录中的所有 .token 文件。

--
如果您无法找到 .token 文件,这是因为它们隐藏在 Finder 中。要在 Finder 中隐藏/显示隐藏文件,请使用以下终端命令(TRUE = UNHIDE,FALSE = HIDE)

defaults write com.apple.finder AppleShowAllFiles TRUE;killall Finder

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
窝囊感情。 2024-10-03 10:42:04

您需要清除传输令牌。

打开 Mac 上的终端,然后粘贴:

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

这应该会清除卡住的令牌。之后,尝试再次上传构建版本。

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.

南烟 2024-10-03 10:42:04

这可能是因为 Xcode 在您上传应用程序时崩溃了。或者,您需要做的就是删除令牌文件:

在 Mac 上打开终端,然后粘贴:

rm ~/.itmstransporter/UploadTokens/*.token

这应该会清除它。如果它仍然不起作用(此时您应该尝试重新上传您的应用程序),请再次在终端上运行该命令,或手动转到...

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

...并删除所有 .token 文件。

希望有帮助!

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!

入画浅相思 2024-10-03 10:42:04

令牌在这里

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

token was in here

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

慕烟庭风 2024-10-03 10:42:04

感谢@WrightsCS的回答它帮助我克服了应用程序加载器问题。

我想在这里再强调一件事。

我按照 @WrightsCS 回答继续操作,它解决了应用程序加载器错误:

无法继续交付:现有传输程序实例当前正在上传此包

但在删除所有令牌后我发现了另一个问题

/Users//.itmstransporter/UploadTokens/

我转到 iTunesConnect 并单击“我的应用程序” ,我看到一条消息“无法连接...请联系Apple”。

这里我不知道为什么它突然停止工作了!

我提交了与 iTunesConnect 上相同的版本进行提交,但它已显示为正在处理。

提交该版本后,iTunesConnect 工作正常!此外,我还可以在提交列表中看到最后上传的版本。

Appreciated @WrightsCS 's answer It helps me to overcome Application Loader issue.

I would like to highlight one more thing here.

I proceed as per @WrightsCS answer and it resolved Application loader error:

Can not proceed with delivery: an existing transporter instance is currently uploading this package

But I found one more issue after removing all tokens from

/Users//.itmstransporter/UploadTokens/

I went to iTunesConnect and clicked on "My Apps", what I saw a message that "Can not connect... please contact Apple".

Here I don't know why it suddenly stops working!

I submitted the same build which was there on iTunesConnect for submission but it has shown as processing.

After submission of that build, iTunesConnect works fine! Also, I am able to see last uploaded build in a list for submission.

若沐 2024-10-03 10:42:04

就我而言(我使用的是 OSX Catalina),我无法找到该文件夹​​:

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

在我的用户主目录下(即使显示隐藏的文件和文件夹),

但似乎我的问题有点不同,我只是完全关闭了 xCode (每个 xCode 窗口都打开)并再次重新打开它,然后我存档了我的项目并上传它,没有任何问题

也许这可以帮助其他人解决这个问题

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

合约呢 2024-10-03 10:42:04

您需要清除“卡住”的上传令牌。为此,请打开 /users//.itmstransporter/UploadTokens/ 中的令牌文件。您应该在顶部看到一行文本,引用您当前的上传令牌。只需删除此行并保存文件即可。您现在应该可以再次提交您的应用程序。

干杯

You need to clear out the upload tokens that are "stuck". To do this, open the tokens file found in /users//.itmstransporter/UploadTokens/. You should see one line of text at the top that refers to your current upload token. Simply delete this line and save the file. You should now be able to submit your app again.

Cheers

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文