somratpro commited on
Commit
feb2c08
·
1 Parent(s): d455ed7

feat: include /workflow path in health-server exclusion list

Browse files
Files changed (1) hide show
  1. 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