Skip to content

Commit

Permalink
networking: Increase checkpoint settle time
Browse files Browse the repository at this point in the history
The previous 0.3 seconds were cutting it pretty close for our own CI
tests, at least for the rhel-7-7 image.
  • Loading branch information
mvollmer authored and martinpitt committed Mar 14, 2019
1 parent b2b5cd4 commit f1d06ab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/networkmanager/interfaces.js
Original file line number Diff line number Diff line change
Expand Up @@ -2081,7 +2081,7 @@ function choice_title(choices, choice, def) {
*
* settle_time too high: All operations take a long time, and the
* curtain needs to come up to prevent the
* user form interacting with the page. Thus settle_time
* user from interacting with the page. Thus settle_time
* should be shorter than curtain_time.
*
* rollback_time too short: Good changes that take a long time to complete
Expand All @@ -2092,8 +2092,8 @@ function choice_title(choices, choice, def) {
* consider Cockpit to be dead already.
*/

var curtain_time = 0.5;
var settle_time = 0.3;
var curtain_time = 1.5;
var settle_time = 1.0;
var rollback_time = 15.0;

function with_checkpoint(model, modify, options) {
Expand Down

0 comments on commit f1d06ab

Please sign in to comment.