We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6eb777 commit c3b2a5cCopy full SHA for c3b2a5c
builder/common_builder/common_builder.go
@@ -71,12 +71,14 @@ func (b *CommonBuilder) Run(hostData *model.HostData) {
71
72
var err error
73
74
- if cwversion, err := b.fetcher.GetCwVersion(); err != nil {
75
- b.log.Error(err)
76
- hostData.AddErrors(err)
77
- } else {
78
- hostData.Info.ClusterwareVersion = cwversion
79
- }
+ // waiting for cwversion.sh fix
+ //
+ // if cwversion, err := b.fetcher.GetCwVersion(); err != nil {
+ // b.log.Error(err)
+ // hostData.AddErrors(err)
+ // } else {
80
+ // hostData.Info.ClusterwareVersion = cwversion
81
+ // }
82
83
if hostData.Filesystems, err = b.fetcher.GetFilesystems(); err != nil {
84
hostData.Filesystems = []model.Filesystem{}
0 commit comments