bundles: fix usage of set() vs {}
All checks were successful
bundlewrap/pipeline/head This commit looks good

This commit is contained in:
Franzi 2021-04-04 10:34:55 +02:00
parent c418102000
commit e36a352a42
Signed by: kunsi
GPG key ID: 12E3D2136B818350
8 changed files with 14 additions and 14 deletions

View file

@ -159,8 +159,8 @@ def iptables(metadata):
return {
'iptables': {
'port_rules': {
'80': atomic(metadata.get('nginx/restrict-to', set('*'))),
'443': atomic(metadata.get('nginx/restrict-to', set('*'))),
'80': atomic(metadata.get('nginx/restrict-to', {'*'})),
'443': atomic(metadata.get('nginx/restrict-to', {'*'})),
},
},
}