We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53f6e03 commit 46de2bbCopy full SHA for 46de2bb
src/modules/db/sqlx/mod.rs
@@ -1675,22 +1675,6 @@ unsafe extern "C" fn fn_transaction_commit(
1675
1676
let transaction = with_transaction(proxy_instance_id, |tx| tx.clone());
1677
1678
- let before_commit_res = q_ctx.dispatch_proxy_event(
1679
- &["greco", "db", "sqlx"],
1680
- "Transaction",
1681
- &proxy_instance_id,
1682
- "before_commit",
1683
- &q_ctx.create_null().unwrap(),
1684
- );
1685
- match before_commit_res {
1686
- Ok(_) => {}
1687
- Err(e) => {
1688
- log::error!("dispatch_before_commit failed due to {e}");
1689
- return q_ctx
1690
- .report_ex(format!("dispatch_before_commit failed due to {e}").as_str());
1691
- }
1692
1693
-
1694
let promise = q_ctx.create_resolving_promise_async(
1695
async move {
1696
// produce
0 commit comments