Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Duplicate
-
None
-
None
-
None
Description
Reloading a collection takes about 15s for us. If we use the reload button in collections admin ui the server ends in an infinite loop of reloading requests.
We checked the browser traffic and every 10 seconds the reload requests ends in Status "cancelled" due to a timeout and a new reload request is triggered. If the reloading takes above 10s it will always end in an infinite loop.
We checked the angular files of solr and inspected this part to be responsible for the 10s timeout:
file: /js/angular/app.js
.factory('httpInterceptor', function($q, $rootScope, $timeout, $injector)
{ var activeRequests = 0; ... activeRequests++; config.timeout = 10000; return config || $q.when(config); };
Attachments
Issue Links
- duplicates
-
SOLR-10211 Solr UI Repeats long requests
- Resolved
- is related to
-
SOLR-9818 Solr admin UI rapidly retries any request(s) if it loses connection with the server
- Open