action #35524
closed[functional][u][sporadic][medium] test fails in snapper_cleanup because of "config is in use" - should we wait in subsequent snapper calls for the previous to finish?
0%
Description
Observation¶
openQA test in scenario opensuse-Tumbleweed-DVD-x86_64-extra_tests_filesystem@64bit fails in
snapper_cleanup
with "config is in use". So it seems that snapper itself is still busy from the previous call and we did not wait long enough before calling the next command.
Reproducible¶
Fails since (at least) Build 20180424
Expected result¶
Last good: 20180423 (or more recent)
Suggestion¶
I think we just need to wait until we can call snapper again, e.g. try again after some waiting time until it finishes, e.g.
my $failed;
my $max_retries = 7;
for (1 .. $max_retries) {
$failed = script_run 'snapper cleanup …';
last unless $failed;
report_info "Retry $_/$max_retries", 'Retrying …';
sleep 1;
}
die "snapper cleanup did not finish successfully even after $max_retries tries" if $failed;
Further details¶
Always latest result in this scenario: latest
Updated by okurz over 6 years ago
- Due date changed from 2018-05-22 to 2018-06-19
- Priority changed from Normal to Low
- Target version changed from Milestone 16 to Milestone 17
last 9 jobs are fine so actually not that high prio.
Updated by JERiveraMoya over 6 years ago
- Subject changed from [functional][u][sporadic] test fails in snapper_cleanup because of "config is in use" - should we wait in subsequent snapper calls for the previous to finish? to [functional][u][sporadic][medium] test fails in snapper_cleanup because of "config is in use" - should we wait in subsequent snapper calls for the previous to finish?
- Difficulty set to medium
Updated by okurz over 6 years ago
- Target version changed from Milestone 17 to Milestone 19
Updated by okurz over 6 years ago
- Target version changed from Milestone 19 to Milestone 19
Updated by okurz about 6 years ago
- Target version changed from Milestone 19 to future
did see this in https://openqa.opensuse.org/tests/748992#step/snapper_cleanup/140 which is going from most recent https://openqa.opensuse.org/tests/763579 over the history 1/50 so valid still
Updated by zluo almost 6 years ago
- Status changed from Workable to In Progress
- Assignee set to zluo
take over and check.
Updated by okurz almost 6 years ago
Ok, please keep in mind that this is a low prio ticket within "future" so please limit the efforts
Updated by zluo almost 6 years ago
- Status changed from In Progress to Resolved
http://e13.suse.de/tests/10947#next_previous shows no issue at all for 100 test runs.
on 3o we don't see this issue anymore:
I don't think cleanup created snapshots is a problem: assert_script_run("snapper cleanup number", 300); # cleanup created snapshots
300 is enough.