1. 26 6月, 2018 2 次提交
  2. 23 6月, 2018 2 次提交
  3. 21 6月, 2018 1 次提交
  4. 20 6月, 2018 3 次提交
  5. 19 6月, 2018 1 次提交
  6. 13 6月, 2018 1 次提交
  7. 12 6月, 2018 17 次提交
  8. 11 6月, 2018 12 次提交
  9. 09 6月, 2018 1 次提交
    • L
      utils.process: Ignore decode-errors when logging the output · 4540e937
      Lukáš Doktor 提交于
      It might happen that user runs process with encoding that is ritcher
      than system one. This is fine by the process as internally it stores
      encoded bytes object, but the drainer might fail attempting to log the
      output.
      
      Those failures should not be critical as, under described circumstances,
      the unavailability of the output is expected and should not prevent the
      execution. Let's simply replace those characters using 'replace' (the
      'xmlcharrefreplace' might fail with ASCII coder) and keep processing the
      data.
      
      To simplify error handling new "astring.to_text" argument "errors" is
      added.
      Signed-off-by: NLukáš Doktor <ldoktor@redhat.com>
      Signed-off-by: NCleber Rosa <crosa@redhat.com>
      4540e937