conan-io / conan

Conan - The open-source C and C++ package manager
https://conan.io
MIT License
7.95k stars 951 forks source link

Error uploading file: conanmanifest.txt, '404 Client Error: Not Found for url: https://artifactory.com/artifactory/api/conan/conan-test/v2/conans/xxx/revisions/b9c4826ad9445ea5257f6432b5a019dd/files/conanmanifest.txt[bug] #16537

Open rajesh-kareti-infovision opened 6 days ago

rajesh-kareti-infovision commented 6 days ago

Describe the bug

Asp part of automation uploading multiple packages. seeing this error randomly Error uploading file: conanmanifest.txt, '404 Client Error: Not Found for url: https://artifactory.com/artifactory/api/conan/conan-test/v2/conans//revisions/b9c4826ad9445ea5257f6432b5a019dd/files/conanmanifest.txt

As other packages uploading successfully there should not be any access issue. This run builds and uploads the package for multiple build_types

How to reproduce it

No response

czoido commented 5 days ago

Hi @rajesh-kareti-infovision,

Thanks for the question, could you please provide more details on what you are doing so we can try to reproduce? Like Conan version, OS, Artifactory version, what is you upload flow, do you upload in paralell? etc.

rajesh-kareti-infovision commented 5 days ago

I am building and uploading my package for different build_types Release , Debug , RelWithDebInfo. I am running these builds in parallel through github actions conan version : 2.0.16 artifactory version : 7.55.17 rev 75517900 os : ubuntu 20.04

czoido commented 4 days ago

Hi @rajesh-kareti-infovision,

I think this could be an Artifactory issue with parallel uploads, probably a race condition, I think this could be a duplicate of https://github.com/conan-io/conan/issues/14581 and https://github.com/conan-io/conan/issues/14175 Please, have a look at them, you may find some valuable information there.

One thing you can try is avoiding the parallel upload of the recipe, limiting it to one of the CI jobs, uploading only the recipe, then the rest of binaries can be uploaded in parallel, as they will not compete for writing in the same recipe location. That may work.

I would also recommend to update your Conan version if that's possible to the latest one.

Hope this helps.