From 3aaccfa48fe42223bf53ddeee5f01946f56c8977 Mon Sep 17 00:00:00 2001 From: Sylvain Briat Date: Mon, 18 Dec 2023 15:49:44 +0100 Subject: [PATCH] upgrade graphhopper api params, secure broker --- .env.dist | 2 +- ci/.env.ci | 2 +- src/modules/geography/infrastructure/graphhopper-georouter.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.env.dist b/.env.dist index 05f7050..00bd32c 100644 --- a/.env.dist +++ b/.env.dist @@ -8,7 +8,7 @@ HEALTH_SERVICE_PORT=6005 DATABASE_URL="postgresql://mobicoop:mobicoop@v3-db:5432/mobicoop?schema=matcher" # MESSAGE BROKER -MESSAGE_BROKER_URI=amqp://v3-broker:5672 +MESSAGE_BROKER_URI=amqp://mobicoop:mobicoop@v3-broker:5672 MESSAGE_BROKER_EXCHANGE=mobicoop MESSAGE_BROKER_EXCHANGE_DURABILITY=true diff --git a/ci/.env.ci b/ci/.env.ci index 011adf5..c5f1b70 100644 --- a/ci/.env.ci +++ b/ci/.env.ci @@ -6,7 +6,7 @@ SERVICE_PORT=5005 DATABASE_URL="postgresql://mobicoop:mobicoop@v3-db:5432/mobicoop?schema=public" # MESSAGE BROKER -MESSAGE_BROKER_URI=amqp://v3-broker:5672 +MESSAGE_BROKER_URI=amqp://mobicoop:mobicoop@v3-broker:5672 MESSAGE_BROKER_EXCHANGE=mobicoop # REDIS diff --git a/src/modules/geography/infrastructure/graphhopper-georouter.ts b/src/modules/geography/infrastructure/graphhopper-georouter.ts index ff0eac3..87e8e9f 100644 --- a/src/modules/geography/infrastructure/graphhopper-georouter.ts +++ b/src/modules/geography/infrastructure/graphhopper-georouter.ts @@ -55,7 +55,7 @@ export class GraphhopperGeorouter implements GeorouterPort { }; private _setDefaultUrlArgs = (): void => { - this.urlArgs = ['vehicle=car', 'weighting=fastest', 'points_encoded=false']; + this.urlArgs = ['profile=car', 'points_encoded=false']; }; private _setSettings = (settings: GeorouterSettings): void => {