func()

in redis/redis.go [147:153]


func (c *Client) DBOneSAdd(hostport, svcport string) {
	_, err := c.DBOne.SAdd(hostport, svcport).Result()

	if err != nil {
		log.Printf("DBOne.SAdd(%s, %s).Result() Error: %s\n", hostport, svcport, err.Error())
	}
}