You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Do you have a workaround you are using at present?
No
What feature or behavior is this required for?
API
How could we solve this issue? (Not knowing is okay!)
Tell us about your Nexus Repository deployment: what version, operating system, and database are you using?
Docker Image of Nexus 3.76.0, running as Statefullset on K8S
Anything else?
The text was updated successfully, but these errors were encountered:
Apparently this issue only occurs for some rest points while others still works fine, which leads to a relative easy workaround, at least for cases where one has a good amount of control of how an application interfaces to nexus. First do your search normally, than use the asset-id still properly returned in the search result to do a 2nd query directly against the specific assets in question. This responds still should have the maven2 field properly filled out, here again in pseudo code short form:
results = <your-normal-nexus-search-query>
for r in results {
if (r == "result I want") {
asset_info = query "<nexus-url>/service/rest/v1/assets/${r['id']}"
print "this one is still filled and working: ${asset_info}"
}
}
Since 3.76.0, use API to seach maven2 artifact return an empty maven2 filed
When I query the URL
I get this
maven2
field wasn't empty in 3.75.No
API
Docker Image of Nexus 3.76.0, running as Statefullset on K8S
The text was updated successfully, but these errors were encountered: