projects
/
openvswitch
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8bc915d
)
ovsdb-idlc: Fix parsing of "ephemeral" member of "column".
author
Ben Pfaff
<blp@nicira.com>
Tue, 8 Dec 2009 21:39:42 +0000
(13:39 -0800)
committer
Ben Pfaff
<blp@nicira.com>
Tue, 8 Dec 2009 21:41:06 +0000
(13:41 -0800)
ovsdb/ovsdb-idlc.in
patch
|
blob
|
history
diff --git
a/ovsdb/ovsdb-idlc.in
b/ovsdb/ovsdb-idlc.in
index d6fc14ab1437a84aaae8c0dd1c55a5525697b9f5..5a6d81c118c0f9d53cd1b45317d514aff4d02738 100755
(executable)
--- a/
ovsdb/ovsdb-idlc.in
+++ b/
ovsdb/ovsdb-idlc.in
@@
-93,7
+93,7
@@
class ColumnSchema:
type = Type.fromJson(mustGetMember(json, 'type', [dict, unicode],
description),
'type of %s' % description)
- ephemeral = getMember(json, 'ephemeral', [
True,False
], description)
+ ephemeral = getMember(json, 'ephemeral', [
bool
], description)
persistent = ephemeral != True
return ColumnSchema(comment, type, persistent)