Merge pull request #2106 from hashicorp/f-update-radix

Updates go-immutable-radix to pull in caching fix.
This commit is contained in:
James Phillips 2016-06-08 19:31:07 -07:00
commit 42b3d999d4
2 changed files with 2 additions and 2 deletions

2
Godeps/Godeps.json generated
View File

@ -122,7 +122,7 @@
},
{
"ImportPath": "github.com/hashicorp/go-immutable-radix",
"Rev": "8e8ed81f8f0bf1bdd829593fdd5c29922c1ea990"
"Rev": "afc5a0dbb18abdf82c277a7bc01533e81fa1d6b8"
},
{
"ImportPath": "github.com/hashicorp/go-memdb",

View File

@ -89,7 +89,7 @@ func (t *Txn) writeNode(n *Node) *Node {
}
// Mark this node as modified
t.modified.Add(n, nil)
t.modified.Add(nc, nil)
return nc
}