Skip to content
This repository has been archived by the owner on Feb 7, 2025. It is now read-only.

Fix Load Tests Due to Multiple ResultSets #1073

Merged
merged 1 commit into from
May 8, 2024
Merged
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
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
Loading