From: Ben Pfaff Date: Fri, 19 Mar 2010 00:09:42 +0000 (-0700) Subject: vswitch: Limit SSL table to a single row. X-Git-Tag: v1.0.0~240 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=a4230dedddd1909f84947b9c6cdf88a23e10a301;p=sliver-openvswitch.git vswitch: Limit SSL table to a single row. Only a single row in the SSL can be useful currently. This should help to prevent confusion since ovsdb-server will choose an SSL configuration randomly if there is more than one. --- diff --git a/vswitchd/vswitch.ovsschema b/vswitchd/vswitch.ovsschema index 2331064ff..8661875ff 100644 --- a/vswitchd/vswitch.ovsschema +++ b/vswitchd/vswitch.ovsschema @@ -229,4 +229,5 @@ "ca_cert": { "type": "string"}, "bootstrap_ca_cert": { - "type": "boolean"}}}}} + "type": "boolean"}}, + "maxRows": 1}}}