Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @thenativeweb/internal_eventsourcingdb_rw
* @thenativeweb/internal_dev
6 changes: 3 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ updates:
interval: weekly
open-pull-requests-limit: 10
assignees:
- thenativeweb/internal_eventsourcingdb_dep
- thenativeweb/internal_dev
labels:
- Dependencies
versioning-strategy: increase
Expand All @@ -22,7 +22,7 @@ updates:
interval: weekly
open-pull-requests-limit: 10
assignees:
- thenativeweb/internal_eventsourcingdb_dep
- thenativeweb/internal_dev
labels:
- Dependencies
commit-message:
Expand All @@ -34,7 +34,7 @@ updates:
interval: "weekly"
open-pull-requests-limit: 10
assignees:
- thenativeweb/internal_eventsourcingdb_dep
- thenativeweb/internal_dev
labels:
- Dependencies
commit-message:
Expand Down
2 changes: 1 addition & 1 deletion lib/handlers/ping/ping.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const ping = async (client: Client): Promise<void> => {
const response = await wrapError(
async () =>
client.httpClient.get({
path: '/ping',
path: '/api/ping',
responseType: 'text',
withAuthorization: false,
}),
Expand Down
4 changes: 2 additions & 2 deletions test/integration/pingTests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ suite('Client.ping()', function () {
test('throws an error if the server responds with an unexpected status code.', async (): Promise<void> => {
let client: Client;
({ client, stopServer } = await startLocalHttpServer(app => {
app.get('/ping', (_req, res) => {
app.get('/api/ping', (_req, res) => {
res.status(StatusCodes.BAD_GATEWAY);
res.send('OK');
});
Expand All @@ -81,7 +81,7 @@ suite('Client.ping()', function () {
test("throws an error if the server's response body is not 'OK'.", async (): Promise<void> => {
let client: Client;
({ client, stopServer } = await startLocalHttpServer(app => {
app.get('/ping', (_req, res) => {
app.get('/api/ping', (_req, res) => {
res.status(StatusCodes.OK);
res.send('Gude');
});
Expand Down
2 changes: 1 addition & 1 deletion test/shared/docker/eventsourcingdb/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
FROM ghcr.io/thenativeweb/eventsourcingdb:0.77.0
FROM ghcr.io/thenativeweb/eventsourcingdb:0.79.0
Loading