Skip to content

Commit 8d49f67

Browse files
committed
Remove try/catch
1 parent dc2f0c2 commit 8d49f67

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/finalize-db.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ async function runQueries(databaseFolder: string, sarifFolder: string, config: c
145145
}
146146

147147
async function run() {
148-
try {
148+
//try {
149149
if (util.should_abort('finish', true) || !await util.reportActionStarting('finish')) {
150150
return;
151151
}
@@ -174,11 +174,11 @@ async function run() {
174174
}
175175
}
176176

177-
} catch (error) {
177+
/*} catch (error) {
178178
core.setFailed(error.message);
179179
await util.reportActionFailed('finish', error.message, error.stack);
180180
return;
181-
}
181+
}*/
182182

183183
await util.reportActionSucceeded('finish');
184184
}

0 commit comments

Comments
 (0)