We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed63b91 commit a440fb6Copy full SHA for a440fb6
1 file changed
server/preprocessing/other-scripts/openaire.R
@@ -52,7 +52,11 @@ get_papers <- function(query, params) {
52
funder = funder,
53
format = 'xml')
54
pubs_metadata <- parse_response(response)
55
- pubs_metadata <- fill_dois(pubs_metadata)
+ # FYI: The deactivation of the fill_dois() function is a hotfix
56
+ # to enable creation of OpenAIRE project maps
57
+ # TODO: root cause analysis of failure mode
58
+ # TODO: refactor/replace/remove the function, decision pending
59
+ #pubs_metadata <- fill_dois(pubs_metadata)
60
},
61
error = function(err){
62
olog$warn(paste0("vis_id:", .GlobalEnv$VIS_ID, "publications: ", err))
0 commit comments