Skip to content

Commit

Permalink
bugfix: stop procesing when correlation id is missing on execute request
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePrez committed Nov 14, 2024
1 parent 04c9dbd commit 20a666d
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ public void run(String requestString) {
case "execute":
if (null == cont_id) {
dispatch(new BadReq(this, m_conn, reqObj, "Correlation ID not specified"));
break;
}
final PrepareSql prevP = m_prepStmtMap.get(cont_id.getAsString());
if (null == prevP) {
Expand Down

0 comments on commit 20a666d

Please sign in to comment.