Skip to content

Commit 44f25e6

Browse files
committed
Add service version in / response
1 parent 3acd921 commit 44f25e6

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

.github/workflows/build-push.yaml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,6 @@ on:
88
push:
99
branches:
1010
- main
11-
paths:
12-
- backend/**
13-
- frontend/**
14-
- helm/**
15-
- .github/workflows/**
1611

1712
jobs:
1813
check:

backend/src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ io.of((_name, _auth, next) => {
6161
});
6262

6363
app.post("/get-file-content", getFileContentReq);
64-
app.get("/", ({ text }) => text(`ok, ${config.serviceVersion}`));
64+
app.get("/", ({ text }) => text("ok"));
6565

6666
// delete pods that are not in active rooms
6767
const cleanupInterval = setInterval(async () => {

0 commit comments

Comments
 (0)