From 971ca66ae24d5853331ce01c4bd8a4e24b73abf8 Mon Sep 17 00:00:00 2001
From: olgasht <olgasht@il.ibm.com>
Date: Mon, 18 Feb 2019 10:17:06 +0200
Subject: [PATCH] UB-1857: chagne cluster id to be an integer instead of string

---
 local/scbe/resources.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/local/scbe/resources.go b/local/scbe/resources.go
index 52e127c1..a132664b 100644
--- a/local/scbe/resources.go
+++ b/local/scbe/resources.go
@@ -226,7 +226,7 @@ type ScbeResponseHost struct {
 	Array          string `json:"array"`
 	HostId         string `json:"host_id"`
 	Name           string `json:"name"`
-	StorageCluster string `json:"storage_cluster"`
+	StorageCluster int `json:"storage_cluster"`
 	PhysicalHost   int    `json:"physical_host"`
 }