Skip to content

Commit

Permalink
Set max refresh attempts (#1792)
Browse files Browse the repository at this point in the history
  • Loading branch information
lfarrell committed Aug 28, 2024
1 parent a6b95d2 commit 7cbc3f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/js/admin/src/action/RefreshResultAction.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ define('RefreshResultAction', ['jquery', 'RemoteStateChangeMonitor'], function($
url : "/services/api/status/item/" + resultObject.pid + "/solrRecord/version",
dataType : 'json'
},
maxAttempts : this.context.maxAttempts? this.context.maxAttempts : 0
maxAttempts : this.context.maxAttempts? this.context.maxAttempts : 15
});

followupMonitor.performPing();
Expand Down

0 comments on commit 7cbc3f6

Please sign in to comment.