Skip to content

Commit

Permalink
Reducing the freeze error threshold from 1200ms to 1000 ms
Browse files Browse the repository at this point in the history
Each Eclipse release gets faster so we should reducing the error
threshold for a UI freeze. In general I think 800ms would be good value
but I don't think we are there yet, so "only" reducing the error
threshold to one second.
  • Loading branch information
vogella committed Apr 29, 2022
1 parent 7e7a6be commit 65e3b4a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public void initializeDefaultPreferences() {

store.setDefault(PreferenceConstants.MONITORING_ENABLED, false);
store.setDefault(PreferenceConstants.LONG_EVENT_WARNING_THRESHOLD_MILLIS, 500); // 0.5 sec
store.setDefault(PreferenceConstants.LONG_EVENT_ERROR_THRESHOLD_MILLIS, 1200); // 2 sec
store.setDefault(PreferenceConstants.LONG_EVENT_ERROR_THRESHOLD_MILLIS, 1000); // 2 sec
store.setDefault(PreferenceConstants.MAX_STACK_SAMPLES, 3);
store.setDefault(PreferenceConstants.DEADLOCK_REPORTING_THRESHOLD_MILLIS,
5 * 60 * 1000); // 5 min
Expand Down

0 comments on commit 65e3b4a

Please sign in to comment.