10. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 10/4/2017 8:38:10 AM Central Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

10.1 Files compared

# Location File Last Modified
1 solr-smart-client.zip\solr-smart-client\tools manual-client-run.js Mon Aug 28 19:30:59 2017 UTC
2 solr-smart-client.zip\solr-smart-client\tools manual-client-run.js Wed Oct 4 13:26:21 2017 UTC

10.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 54
Changed 1 2
Inserted 0 0
Removed 0 0

10.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

10.4 Active regular expressions

No regular expressions were active.

10.5 Comparison detail

  1   'use stric t';
  2  
  3   let SolrSm artClient  = require( '../../sol r-smart-cl ient').Sol rSmartClie nt;
  4  
  5   let logger  = require ('bunyan') .createLog ger({
  6     name: 't est',
  7     level: ' debug'
  8   });
  9  
  10   let config  = {
  11     dataTime outMillis:  5000,
  12     core: 'v pr',
  13       zooKeeperC onnection:  ' IP                ',
  14     path: '/ test/state .json',
  15     nodeEven tLogLevel:  'debug',
  16     zookeepe rEventLogL evel: 'deb ug',
  17     zooKeepe rOptions:  {
  18       retrie s: 3
  19     }
  20   };
  21  
  22  
  23   let solrSm artClient  = new Solr SmartClien t(logger,  config);
  24   solrSmartC lient.star t();
  25  
  26  
  27  
  28