From ed653bfddb8b5a1a34872a8340d1521bfbfaac6d Mon Sep 17 00:00:00 2001 From: John Date: Tue, 10 Dec 2019 16:18:03 +0000 Subject: [PATCH] Update bbolt to v1.3.3 in go.mod bbolt version 1.3.0 has a bug which causes issues with some older ARMv5 boards which prevents netns from starting, details here: https://github.com/boltdb/bolt/issues/430 This issue has beeen fixed in the following commit: https://github.com/boltdb/bolt/pull/578/files Signed-off-by: John Toomey --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 03506ea..f67c3ea 100644 --- a/go.mod +++ b/go.mod @@ -15,7 +15,7 @@ require ( github.com/stretchr/testify v1.2.2 // indirect github.com/vishvananda/netlink v1.0.0 github.com/vishvananda/netns v0.0.0-20180720170159-13995c7128cc - go.etcd.io/bbolt v1.3.0 + go.etcd.io/bbolt v1.3.3 golang.org/x/crypto v0.0.0-20180910181607-0e37d006457b // indirect golang.org/x/sys v0.0.0-20180925112736-b09afc3d579e // indirect gopkg.in/airbrake/gobrake.v2 v2.0.9 // indirect