feat: include /workflow path in health-server exclusion list
Browse files- health-server.js +1 -0
health-server.js
CHANGED
|
@@ -623,6 +623,7 @@ const server = http.createServer(async (req, res) => {
|
|
| 623 |
pathname.startsWith("/logout") ||
|
| 624 |
pathname.startsWith("/nodes/") ||
|
| 625 |
pathname.startsWith("/templates/") ||
|
|
|
|
| 626 |
pathname.startsWith("/healthz");
|
| 627 |
|
| 628 |
|
|
|
|
| 623 |
pathname.startsWith("/logout") ||
|
| 624 |
pathname.startsWith("/nodes/") ||
|
| 625 |
pathname.startsWith("/templates/") ||
|
| 626 |
+
pathname.startsWith("/workflow") ||
|
| 627 |
pathname.startsWith("/healthz");
|
| 628 |
|
| 629 |
|