Skip to content

Commit

Permalink
deleted double /
Browse files Browse the repository at this point in the history
  • Loading branch information
Giovanni Troisi committed Dec 9, 2024
1 parent fef582a commit 0528b05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions services/requestService.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ var configGlobal = require('../config/global');
const projectService = require('./projectService');
const axios = require("axios").default;

const TILEBOT_ENDPOINT = process.env.TILEBOT_ENDPOINT || "http://localhost:" + port+ "/modules/tilebot/ext";
const TILEBOT_ENDPOINT = process.env.TILEBOT_ENDPOINT || "http://localhost:" + port+ "/modules/tilebot/ext/";

let tdCache = new TdCache({
host: process.env.CACHE_REDIS_HOST,
Expand Down Expand Up @@ -2811,7 +2811,7 @@ class RequestService {

return new Promise( async (resolve, reject) => {
await axios({
url: TILEBOT_ENDPOINT + '/reserved/parameters/requests/' + request_id,
url: TILEBOT_ENDPOINT + 'reserved/parameters/requests/' + request_id,
headers: {
'Content-Type': 'application/json'
},
Expand Down

0 comments on commit 0528b05

Please sign in to comment.