Browse Source

removed hardcoded URL in favor of config URL

pull/850/head
Stephen Hess 8 years ago
parent
commit
f38987d7b9
  1. 2
      routes/v1.js

2
routes/v1.js

@ -85,7 +85,7 @@ function addRoutes(app, peliasConfig) {
const isPlaceholderServiceEnabled = require('../controller/predicates/is_service_enabled')(peliasConfig.api.placeholderService); const isPlaceholderServiceEnabled = require('../controller/predicates/is_service_enabled')(peliasConfig.api.placeholderService);
const pipService = require('../service/pointinpolygon')(peliasConfig.api.pipService); const pipService = require('../service/pointinpolygon')(peliasConfig.api.pipService);
const placeholderService = require('../service/placeholder')('http://localhost:3000/parser'); const placeholderService = require('../service/placeholder')(peliasConfig.api.placeholderService);
const coarse_reverse_should_execute = all( const coarse_reverse_should_execute = all(
not(hasRequestErrors), isPipServiceEnabled, isCoarseReverse not(hasRequestErrors), isPipServiceEnabled, isCoarseReverse

Loading…
Cancel
Save