aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/swarm/fs.go
diff options
context:
space:
mode:
authorJanoš Guljaš <janos@users.noreply.github.com>2018-08-06 17:33:22 +0800
committerPéter Szilágyi <peterke@gmail.com>2018-08-06 17:33:22 +0800
commita72ba5a55be3abb1be85126838ee0b4a9c475be4 (patch)
tree6c02c730ded55f6842778618ba06ae3d52d06bdf /cmd/swarm/fs.go
parent6711f098d5f070fbb26a4dd7899e3c6c766f4477 (diff)
downloaddexon-a72ba5a55be3abb1be85126838ee0b4a9c475be4.tar
dexon-a72ba5a55be3abb1be85126838ee0b4a9c475be4.tar.gz
dexon-a72ba5a55be3abb1be85126838ee0b4a9c475be4.tar.bz2
dexon-a72ba5a55be3abb1be85126838ee0b4a9c475be4.tar.lz
dexon-a72ba5a55be3abb1be85126838ee0b4a9c475be4.tar.xz
dexon-a72ba5a55be3abb1be85126838ee0b4a9c475be4.tar.zst
dexon-a72ba5a55be3abb1be85126838ee0b4a9c475be4.zip
cmd/swarm, swarm: various test fixes (#17299)
* swarm/network/simulation: increase the sleep duration for TestRun * cmd/swarm, swarm: fix failing tests on mac * cmd/swarm: update TestCLISwarmFs skip comment * swarm/network/simulation: adjust disconnections on simulation close * swarm/network/simulation: call cleanups after net shutdown
Diffstat (limited to 'cmd/swarm/fs.go')
-rw-r--r--cmd/swarm/fs.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/swarm/fs.go b/cmd/swarm/fs.go
index 0124586cf..3dc38ca4d 100644
--- a/cmd/swarm/fs.go
+++ b/cmd/swarm/fs.go
@@ -92,7 +92,7 @@ func listMounts(cliContext *cli.Context) {
mf := []fuse.MountInfo{}
err = client.CallContext(ctx, &mf, "swarmfs_listmounts")
if err != nil {
- utils.Fatalf("encountered an error calling the RPC endpoint while unmounting: %v", err)
+ utils.Fatalf("encountered an error calling the RPC endpoint while listing mounts: %v", err)
}
if len(mf) == 0 {
fmt.Print("Could not found any swarmfs mounts. Please make sure you've specified the correct RPC endpoint\n")