You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In etcd the child requests in a single txn is execute in order. However current sync_txn_request implementation uses BFS(Breadth-first search
) to process the txn request and it is not suitable for nested txns. We need to refactor this to use DFS.
The text was updated successfully, but these errors were encountered:
In etcd the child requests in a single txn is execute in order. However current
sync_txn_request
implementation uses BFS(Breadth-first search) to process the txn request and it is not suitable for nested txns. We need to refactor this to use DFS.
The text was updated successfully, but these errors were encountered: