Skip to content

Commit

Permalink
fixed getKernelMessages signature in default impl (#521)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-iyashchyshyn authored Jan 13, 2025
1 parent 0fc9779 commit 8b09b08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/sysinfo/server/sysinfo_default.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ var getUptime = func() (time.Duration, error) {
return 0, status.Errorf(codes.Unimplemented, "uptime is not supported")
}

var getKernelMessages = func() ([]*pb.DmsgRecord, error) {
var getKernelMessages = func(time.Duration, <-chan struct{}) ([]*pb.DmsgRecord, error) {
return nil, status.Errorf(codes.Unimplemented, "dmesg is not supported")
}

Expand Down

0 comments on commit 8b09b08

Please sign in to comment.