Fixing the issue

ARTIFACTORY: How to fix 'Repository sync is disabled' error with federated repositories

AuthorFullName__c
Omer Borshan
articleNumber
000005632
ft:sourceType
Salesforce
FirstPublishedDate
2023-03-21T09:07:02Z
lastModifiedDate
2023-05-09T06:59:07Z
VersionNumber
4
To fix this problem, execute the below REST API:
curl -u <ADMIN-USER> -X POST "https://<server-name>.jfrog.io/artifactory/api/federation/repos/enable" -H "Content-type: application/json" --data '["*"]'

The expected output should be:
Repos of type [*] enabled.

The above API will re-enable the fed members for all repo types.

The “*” in the array is a wildcard to re-enable all Federated repositories regardless of repository type (Docker, Helm, etc). It can be replaced with repository types, for example:
["Alpine", "generic", "conan", "docker", "maven", "npm", "yum"]