11. 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.

11.1 Files compared

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

11.2 Comparison summary

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

11.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

11.4 Active regular expressions

No regular expressions were active.

11.5 Comparison detail

  1   'use stric t';
  2  
  3   let solrSm artClient  = require( '../../sol r-smart-cl ient');
  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: '/ collection s/state.js on',
  15     nodeEven tLogLevel:  'debug',
  16     zookeepe rEventLogL evel: 'deb ug',
  17     zooKeepe rOptions:  {
  18       retrie s: 3
  19     }
  20   };
  21  
  22  
  23   let solrCl ient = sol rSmartClie nt.createC lient(logg er, config );
  24  
  25  
  26   solrClient .search('P ID:1', fun ction(erro r, data) {
  27     console. log(error) ;
  28     console. log(data);
  29  
  30     solrClie nt.search( 'PID:1', f unction(er ror, data)  {
  31       consol e.log(erro r);
  32       consol e.log(data );
  33  
  34       proces s.exit();
  35     });
  36   });
  37  
  38