Skip to content

Commit

Permalink
networking: Increase checkpoint settle time
Browse files Browse the repository at this point in the history
Similar to commit f1d06ab, but bump it harder. Right after
starting the test and cockpit, the VMs are fairly loaded (particularly
rhel-8-2), so that eth0 does not get shut down quickly enough and the
checkpoint_destroy() succeeds. As a result, Cockpit just disconnects,
the curtain never comes up, and there is never a restore.

Fixes cockpit-project#13532
Closes cockpit-project#13534
  • Loading branch information
martinpitt authored Feb 12, 2020
1 parent ea82bd7 commit 7b115d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/networkmanager/interfaces.js
Original file line number Diff line number Diff line change
Expand Up @@ -2101,8 +2101,8 @@ function choice_title(choices, choice, def) {
* less patience than Linux in this regard.
*/

var curtain_time = 1.5;
var settle_time = 1.0;
var curtain_time = 4.0;
var settle_time = 3.0;
var rollback_time = 7.0;

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

0 comments on commit 7b115d1

Please sign in to comment.