Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[ptp-dev] Remote Indexer gets stuck

Hello All,

I have been seeing a problem with the updation of the status of the Remote Indexer.

In the File "RSECIndexSubsystem.java" we have a method named "reindexScope"

In that the "status" is never updated while running in this loop.

//poll for progress information until the operation is done or canceled
            while (!status.getName().equals("done") && !status.getName().equals("cancelled") && !monitor.isCanceled() && !smonitor.isNetworkDown()) { //$NON-NLS-1$ //$NON-NLS-2$
            RemoteIndexerProgress progress = getIndexerProgress(status);
            task.updateProgressInformation(progress);
            try {
Thread.sleep(100);
} catch (InterruptedException e) {
RDTLog.logError(e);
}
            }

Hence the Indexer seems to stuck.
Has anyone faced this problem ?
What can be the possible workaround for this ?

Thanks,
Vishal

Back to the top