func()

in redis/redis.go [164:170]


func (c *Client) DBOneDel(hostport string) {
	// then delete host from DB One
	_, err := c.DBOne.Del(hostport).Result()
	if err != nil {
		log.Printf("DBOne.Del(%s).Result() Error: %s\n", hostport, err.Error())
	}
}