Skip to content

Commit

Permalink
Remove warp from index.js
Browse files Browse the repository at this point in the history
Signed-off-by: YosiElias <yosielias@outlook.com>
  • Loading branch information
Yosi Elias committed Feb 5, 2025
1 parent e70605b commit c62fd85
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions TestResultSummaryService/routes/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ app.get('/getFeedbackUrl', require('./getFeedbackUrl'));
app.get('/rescanBuild', require('./rescanBuild'));
app.get('/testParserViaFile', require('./test/testParserViaFile'));
app.get('/testParserViaLogStream', require('./test/testParserViaLogStream'));
app.get('/getRerunDetails', wrap(require('./getRerunDetails')));
app.get('/getJobsDetails', wrap(require('./getJobsDetails')));
app.get('/GetFailedTestByMachine', wrap(require('./GetFailedTestByMachine')));
app.get('/getRerunDetails', require('./getRerunDetails'));
app.get('/getJobsDetails', require('./getJobsDetails'));
app.get('/GetFailedTestByMachine', require('./GetFailedTestByMachine'));

app.get('/updateComments', require('./updateComments'));
app.get('/updateKeepForever', require('./updateKeepForever'));
Expand Down
1 change: 1 addition & 0 deletions test-result-summary-client/src/Build/AllTestsInfo.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ const Build = () => {
const buildsRes = fetchData(
`/api/getAllTestsWithHistory?buildId=${buildId}${limitParam}`
);

const buildDataRes = fetchData(`/api/getData?_id=${buildId} `);
const [builds, buildData] = await Promise.all([
buildsRes,
Expand Down

0 comments on commit c62fd85

Please sign in to comment.