This commit is contained in:
crusader 2018-03-27 18:49:36 +09:00
parent 73c6a1309f
commit 9ba616bfd1

View File

@ -29,12 +29,7 @@ func (c *SSHCrawler) Get(config *sensorConfigM.SensorConfig) (map[string]string,
itemCount := len(config.Items)
results := make(map[string]string, 0)
uuid, err := uuid.NewV4()
if nil != err {
return nil, err
}
boundary := uuid.String()
boundary := uuid.NewV4().String()
commands := ""
for i := 0; i < itemCount; i++ {