mirror of
https://github.com/ClusterCockpit/cc-metric-collector.git
synced 2025-04-06 21:45:55 +02:00
Cast const to string
This commit is contained in:
parent
bdb16090d7
commit
77f8b275ed
@ -17,7 +17,7 @@ import (
|
||||
lp "github.com/ClusterCockpit/cc-metric-collector/internal/ccMetric"
|
||||
)
|
||||
|
||||
const DEFAULT_GPFS_CMD = "mmpmon"
|
||||
const DEFAULT_GPFS_CMD = `mmpmon`
|
||||
|
||||
type GpfsCollector struct {
|
||||
metricCollector
|
||||
@ -40,7 +40,7 @@ func (m *GpfsCollector) Init(config json.RawMessage) error {
|
||||
m.setup()
|
||||
|
||||
// Set default mmpmon binary
|
||||
m.config.Mmpmon = DEFAULT_GPFS_CMD
|
||||
m.config.Mmpmon = string(DEFAULT_GPFS_CMD)
|
||||
|
||||
// Read JSON configuration
|
||||
if len(config) > 0 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user