Browse Source

Merge pull request #14493 from wiwiwa/master

Fixed 'TypeError: Missing parameter name ...' when running web-ui with TB_ENABLE_PROXY=true
msa-cfs-tests-trace-logs
Viacheslav Klimov 9 months ago
committed by GitHub
parent
commit
5ba1b5e844
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      msa/web-ui/server.ts

4
msa/web-ui/server.ts

@ -81,12 +81,12 @@ let connections: Socket[] = [];
}
}
});
app.all('/api/*', (req, res) => {
app.all('/api/*splat', (req, res) => {
logger.debug(req.method + ' ' + req.originalUrl);
apiProxy.web(req, res);
});
app.all('/static/rulenode/*', (req, res) => {
app.all('/static/rulenode/*splat', (req, res) => {
apiProxy.web(req, res);
});

Loading…
Cancel
Save