File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
opengrok-indexer/src/main/java/org/opengrok/indexer/index Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -369,6 +369,10 @@ private void markProjectIndexed(Project project) {
369
369
// the project's isIndexed() is true because it triggers RepositoryInfo
370
370
// refresh.
371
371
if (project != null ) {
372
+ // Also need to store the correct value in configuration
373
+ // when indexer writes it to a file.
374
+ project .setIndexed (true );
375
+
372
376
if (env .getConfigURI () != null ) {
373
377
Response r = ClientBuilder .newClient ()
374
378
.target (env .getConfigURI ())
@@ -385,10 +389,6 @@ private void markProjectIndexed(Project project) {
385
389
new Object [] {project , r });
386
390
}
387
391
}
388
-
389
- // Also need to store the correct value in configuration
390
- // when indexer writes it to a file.
391
- project .setIndexed (true );
392
392
}
393
393
}
394
394
You can’t perform that action at this time.
0 commit comments