Skip to content

Commit

Permalink
Fix auth urls (#769)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaclarke authored Nov 8, 2023
1 parent 32877ff commit 7a76cb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/auth-core/src/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export class Auth {
const [host, port] = connectConfig.address;
const baseUrl = `${
connectConfig.tlsSecurity === "insecure" ? "http" : "https"
}://${host}:${port}/db/${connectConfig.database}/ext/auth`;
}://${host}:${port}/db/${connectConfig.database}/ext/auth/`;

return new this(client, baseUrl);
}
Expand Down

0 comments on commit 7a76cb9

Please sign in to comment.