[generator:geo_objects] Fix write jsonl file.

This commit is contained in:
Anatoly Serdtcev 2019-12-16 15:40:17 +03:00 committed by Sergey Yershov
parent 7e785156e9
commit 03f036a647

View file

@ -439,13 +439,12 @@ void AddPoisEnrichedWithHouseAddresses(GeoObjectMaintainer & geoObjectMaintainer
auto const id = fb.GetMostGenericOsmId();
auto jsonValue = MakeJsonValueWithNameFromFeature(fb, JsonValue{std::move(house)});
kvWriter.Write(id, JsonValue{std::move(jsonValue)});
counter++;
if (counter % 100000 == 0)
LOG(LINFO, (counter, "pois added"));
std::lock_guard<std::mutex> lock(streamMutex);
kvWriter.Write(id, JsonValue{std::move(jsonValue)});
streamPoiIdsToAddToLocalityIndex << id << "\n";
};