rec, err := s.Log.Read(req.Offset)
I get a compiler error saying there is no “Read” method available on the Log struct. Any ideas on why this is getting flagged.
rec, err := s.Log.Read(req.Offset)
I get a compiler error saying there is no “Read” method available on the Log struct. Any ideas on why this is getting flagged.