Skip to content

Commit 41c27e1

Browse files
committed
Merge release branch 4.19 to 4.20
* 4.19: VR: fix site-2-site VPN if split connections is enabled (#10067) UI: fix cannot open 'Edit tags' modal for static routes (#10065)
2 parents 32af4a2 + 5c01cff commit 41c27e1

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

systemvm/debian/opt/cloud/bin/configure.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1100,7 +1100,7 @@ def configure_ipsec(self, obj):
11001100
file.addeq(" dpddelay=30")
11011101
file.addeq(" dpdtimeout=120")
11021102
file.addeq(" dpdaction=restart")
1103-
if splitconnections and peerlistarr.count > 1:
1103+
if splitconnections and len(peerlistarr) > 1:
11041104
logging.debug('Splitting connections for rightsubnets %s' % peerlistarr)
11051105
for peeridx in range(1, len(peerlistarr)):
11061106
logging.debug('Adding split connection -%d for subnet %s' % (peeridx + 1, peerlistarr[peeridx]))

ui/src/views/network/StaticRoutesTab.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,6 @@ export default {
304304
},
305305
openTagsModal (route) {
306306
this.selectedRule = route
307-
this.rulesRef.value.resetFields()
308307
this.fetchTags(this.selectedRule)
309308
this.tagsModalVisible = true
310309
}

0 commit comments

Comments
 (0)