From: Ben Pfaff Date: Fri, 19 Mar 2010 00:09:42 +0000 (-0700) Subject: vswitch: Limit SSL table to a single row. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a4230dedddd1909f84947b9c6cdf88a23e10a301;p=openvswitch 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 2331064f..8661875f 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}}}