Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions backend/windmill-worker/src/pg_executor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,7 @@ pub async fn do_postgresql(
tracing::error!("connection error: {}", e);
}
});
drop(mtex);
(Some((client, handle)), None)
} else {
tracing::info!("Creating new connection");
Expand All @@ -307,6 +308,7 @@ pub async fn do_postgresql(
tracing::error!("connection error: {}", e);
}
});
drop(mtex);
(Some((client, handle)), None)
};

Expand Down
Loading