File: add-additional-disk-conversion-retry-dfff93cbdf779f81.yaml

package info (click to toggle)
python-ironic-lib 7.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 532 kB
  • sloc: python: 3,631; makefile: 20; sh: 2
file content (11 lines) | stat: -rw-r--r-- 568 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
---
fixes:
  - |
    Adds an additional error to look for in the ``qemu-img`` image conversion
    retry logic to automatically retry if 'Cannot allocate memory' is
    encountered, as ``qemu-img`` makes a number of memory allocation requests
    and the most likely is upon creating the convesrsion thread resulting in
    'qemu: qemu_thread_create_: Resource temporarily unavailable'
    but other memory allocation fails can result in
    'Failed to allocate memory: Cannot allocate memory'. Both types of errors
    are now checked and automatically retried upon.