lewismc commented on a change in pull request #6: SDAP-35 (completed the
configuration change)
URL:
https://github.com/apache/incubator-sdap-mudrod/pull/6#discussion_r172927648
##########
File path:
core/src/main/java/org/apache/sdap/mudrod/metadata/structure/MetadataExtractor.java
##########
@@ -67,15 +67,15 @@ public MetadataExtractor() {
* @param type metadata type name
* @return metadata list
*/
- protected List<PODAACMetadata> loadMetadataFromES(ESDriver es, String index,
String type) {
+ protected List<Metadata> loadMetadataFromES(ESDriver es, String index,
String type) {
- List<PODAACMetadata> metadatas = new ArrayList<PODAACMetadata>();
+ List<Metadata> metadatas = new ArrayList<Metadata>();
SearchResponse scrollResp =
es.getClient().prepareSearch(index).setTypes(type).setQuery(QueryBuilders.matchAllQuery()).setScroll(new
TimeValue(60000)).setSize(100).execute().actionGet();
while (true) {
for (SearchHit hit : scrollResp.getHits().getHits()) {
Map<String, Object> result = hit.getSource();
- String shortname = (String) result.get("Dataset-ShortName");
+ /*String shortname = (String) result.get("Dataset-ShortName");
Review comment:
Remove this code, never comment out code and leave it without a natural
language comment to explain why.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services