rename storagesheet to sheet

the client now expects a node shape of `sheet` not `storagesheet`
update report.go to reflect this.

fixes #3322
This commit is contained in:
guyfedwards
2018-08-22 13:07:45 +01:00
parent 143738275c
commit a38b6213d1
2 changed files with 2 additions and 2 deletions

View File

@@ -19,7 +19,7 @@ var (
cloud = "cloud"
cylinder = "cylinder"
dottedcylinder = "dottedcylinder"
storagesheet = "storagesheet"
storagesheet = "sheet"
// Helper to make a report.node with some common options
node = func(topology string) func(id string, adjacent ...string) report.Node {

View File

@@ -43,7 +43,7 @@ const (
Cloud = "cloud"
Cylinder = "cylinder"
DottedCylinder = "dottedcylinder"
StorageSheet = "storagesheet"
StorageSheet = "sheet"
// Used when counting the number of containers
ContainersKey = "containers"