#3492 Fix arch filter in list of hosts webUI
Merged 2 years ago by tkopecek. Opened 2 years ago by jcupova.
jcupova/koji issue-3491  into  master

file modified
+1 -1
@@ -1674,7 +1674,7 @@ 

      if arch != 'all':

          arch = _validate_arch(arch)

          if arch:

-             hosts = [x for x in hosts if arch in x['arches']]

+             hosts = [x for x in hosts if arch in x['arches'].split(' ')]

      else:

          arch = 'all'

      values['arch'] = arch

Metadata Update from @tkopecek:
- Pull-request tagged with: testing-ready

2 years ago

Metadata Update from @jobrauer:
- Pull-request tagged with: testing-done

2 years ago

Commit 76d307d fixes this pull-request

Pull-Request has been merged by tkopecek

2 years ago