File tree Expand file tree Collapse file tree
packages/query-plan-executor/src/logic Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -132,15 +132,15 @@ export class App {
132132 /**
133133 * Commits a transaction.
134134 */
135- async commitTransaction ( transactionId : string ) : Promise < void > {
136- return await this . #transactionManager. commitTransaction ( transactionId )
135+ commitTransaction ( transactionId : string ) : Promise < void > {
136+ return this . #transactionManager. commitTransaction ( transactionId )
137137 }
138138
139139 /**
140140 * Rolls back a transaction.
141141 */
142- async rollbackTransaction ( transactionId : string ) : Promise < void > {
143- return await this . #transactionManager. rollbackTransaction ( transactionId )
142+ rollbackTransaction ( transactionId : string ) : Promise < void > {
143+ return this . #transactionManager. rollbackTransaction ( transactionId )
144144 }
145145
146146 /**
You can’t perform that action at this time.
0 commit comments