Go to the following correlation results:
This issue is also reproducible on https://cd.genenetwork.org
There is a chance the link above might eventually expire. If that happens, you can regenerate the same correlation results with the following results:
The request uses the "GET" method: see
Some files that are concerned with the issue:
Probable solution: add `method="POST"` to the "<form ...>" line in the "add.html" file, but there is a chance that might break other features that depend on the same form. This will need to be done carefully.
In retrospect, this feature should not use "GET" at all, since it is not indempotent. Every run has the potential to change the state of the underlying collection(s). All features depending on the "add.html" template should use the "POST" method, never "GET".
This converts the requests to use the POST method which does not have any data size limits according to the HTTP protocol (in practice, there is probably a limit, but that is a configuration value, and we are unlikely to hit it).