Skip to content
This repository was archived by the owner on Feb 7, 2024. It is now read-only.

Commit 7211122

Browse files
StykMartinmgrabovsky
authored andcommitted
create: Fix strip_extra_pages() invocation
The change was introduce in commit 5223d96 Signed-off-by: Martin Styk <[email protected]>
1 parent 404cddc commit 7211122

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/create.wsgi

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,8 @@ def application(environ, start_response):
200200

201201
if task.get_type() in [TASK_VMCORE, TASK_VMCORE_INTERACTIVE]:
202202
vmcore = KernelVMcore(os.path.join(crashdir, "vmcore"))
203-
vmcore.strip_extra_pages(task)
203+
vmcore.prepare_debuginfo(task)
204+
vmcore.strip_extra_pages()
204205

205206
retcode = task.start()
206207
if retcode != 0:

0 commit comments

Comments
 (0)