VIVO-699: increased retry count to ensure faculty data is retrieved.
This commit is contained in:
parent
cb321a1cd9
commit
a68c8d02c6
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ $(document).ready(function(){
|
||||||
$.getJSON(url, function(results) {
|
$.getJSON(url, function(results) {
|
||||||
|
|
||||||
if ( results == null || results.individuals.length == 0 ) {
|
if ( results == null || results.individuals.length == 0 ) {
|
||||||
if ( retryCount < 3 ) {
|
if ( retryCount < 5 ) {
|
||||||
retryCount = retryCount + 1;
|
retryCount = retryCount + 1;
|
||||||
getFacultyMembers();
|
getFacultyMembers();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue