Fixes from review comments.

This commit is contained in:
Angel Borroy
2019-08-28 16:34:32 +02:00
parent eba5581355
commit 4ef2befdcb
2 changed files with 2 additions and 2 deletions
@@ -2124,7 +2124,7 @@ public class SolrInformationServer implements InformationServer
newDoc.addField(FIELD_PROPERTIES, propertyQName.toString());
newDoc.addField(FIELD_PROPERTIES, propertyQName.getPrefixString());
PropertyValue value = properties.get(propertyQName);
PropertyValue value = property.getValue();
if(value != null)
{
if (value instanceof StringPropertyValue)
@@ -68,7 +68,7 @@ public class TrackerState
private volatile boolean check = false;
// Handle Thread Safe operations
private volatile AtomicInteger trackerCycles;
private volatile AtomicInteger trackerCycles = new AtomicInteger(0);
private long timeToStopIndexing;