Skip to content

Commit

Permalink
fix paths
Browse files Browse the repository at this point in the history
  • Loading branch information
zkokelj committed Dec 1, 2023
1 parent 9ca02c3 commit b348e64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/tasks/ten-gateway.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ task("ten:gateway:join-authenticate", "Joins and authenticates the gateway for a
const req = http.request({
host: '127.0.0.1',
port: 3000,
path: '/join/',
path: '/join',
method: 'get',
}, (response)=>{
if (response.statusCode != 200) {
Expand Down Expand Up @@ -163,7 +163,7 @@ task("ten:gateway:join-authenticate", "Joins and authenticates the gateway for a
const req = http.request({
host: '127.0.0.1',
port: 3000,
path: '/authenticate/' + queryString,
path: '/authenticate' + queryString,
method: 'post',
headers: {
'Content-Type': 'application/json'
Expand Down

0 comments on commit b348e64

Please sign in to comment.