forked from openvswitch/ovs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ovsdb: Fix mutation of newly inserted rows from Python IDL.
This patch fixes the scenario, where the mutate operation on a row is sent in the same transaction as row insert operation. It was obvserved that this mutate operation was not getting committed to the OVSDB. To get around the above problem the "where" condition in an mutate operation is modified to use the named-uuid to identify a row created in the current transaction. Signed-off-by: Amitabha Biswas <[email protected]> Suggested-by: Richard Theis <[email protected]> Signed-off-by: Ben Pfaff <[email protected]>
- Loading branch information
Showing
4 changed files
with
25 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ Alfredo Finelli [email protected] | |
Alin Serdean [email protected] | ||
Ambika Arora [email protected] | ||
Amit Bose [email protected] | ||
Amitabha Biswas [email protected] | ||
Andrew Evans [email protected] | ||
Andrew Kampjes [email protected] | ||
Andrew Lambeth [email protected] | ||
|
@@ -416,6 +417,7 @@ Ralf Heiringhoff [email protected] | |
Ram Jothikumar [email protected] | ||
Ramana Reddy [email protected] | ||
Ray Li [email protected] | ||
Richard Theis [email protected] | ||
RishiRaj Maulick [email protected] | ||
Rob Sherwood [email protected] | ||
Robert Strickler [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters