Skip to content

Commit

Permalink
Fixed the 502 gateway error; when orcid profile is too big (many ids)
Browse files Browse the repository at this point in the history
  • Loading branch information
romanchyla committed Dec 28, 2015
1 parent c87a982 commit beffcd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/modules/orcid/orcid_api.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ define([
this.profile = {};
this.checkInterval = 3600 * 1000;
this.virgin = true;
this.maxQuerySize = 512;
this.maxQuerySize = 100;
this.queryUpdater = new ApiQueryUpdater('orcid_api');
this.orcidApiTimeout = 5000; //5seconds
},
Expand Down

0 comments on commit beffcd0

Please sign in to comment.