Skip to content

Commit

Permalink
Merge pull request #1073 from CDCgov/fix-load-tests-too-many-resutsets
Browse files Browse the repository at this point in the history
Fix Load Tests Due to Multiple `ResultSet`s
  • Loading branch information
halprin authored May 8, 2024
2 parents cf86ec8 + c5cbb0b commit 58b96d7
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,9 @@ public Set<String> readMetadataForMessageLinking(String submissionId)
OR m1.sending_facility_details = m2.receiving_facility_details)
AND m1.received_message_id <> m2.received_message_id
WHERE m1.received_message_id = ?;
-- LIMIT 50 This is a potential fix for load test failures since they link all the ids together;
""");
// -- LIMIT 50 This is a potential fix for load test failures
// since they link all the ids together;
statement.setString(1, submissionId);
return statement;
} catch (SQLException e) {
Expand Down

0 comments on commit 58b96d7

Please sign in to comment.