Warning: "The full diff is too big to be displayed, showing the first 200 changed files"
This warning may be shown when you're viewing or comparing voluminous revisions that contain a large number of files. If you must see all of the changes, the limit can be raised.
Solution
To raise the limit in the ZIP installation:
- Stop Upsource:
<upsource_home>/bin/upsource.sh stop
-
Open the configuration file upsource-frontend.jvmoptions located in the
<upsource_home>/conf/upsource-frontend
directory. If the file does not exist, create it. Add the following line to that file:
frontend.revision.file.count.limit=XXXX
where XXXX is the number of files you want to be displayed.
- Save and close the file.
- Start Upsource.
To raise the limit in the Docker installation::
Stop Upsource:
docker exec <containerId> stop
-
Open the configuration file upsource-frontend.jvmoptions. The file is located in the
<path to conf directory>/conf/upsource-frontend/
. If the file does not exist, create it. Add the following line to that file:
frontend.revision.file.count.limit=XXXX
where XXXX is the number of files you want to be displayed.
- Save and close the file.
Start Upsource:
docker start <containerId>
.