From 3108fc1ea7481f0243477fd2f27cb13c1d8f153c Mon Sep 17 00:00:00 2001 From: gremat <50012463+gremat@users.noreply.github.com> Date: Fri, 10 Jul 2026 08:23:38 +0200 Subject: [PATCH] feat: add issue corrupted read --- thorlog/v3/issue.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/thorlog/v3/issue.go b/thorlog/v3/issue.go index b2efa8f..cb48e7f 100644 --- a/thorlog/v3/issue.go +++ b/thorlog/v3/issue.go @@ -20,4 +20,6 @@ const ( IssueCategoryTruncated = "truncated" // IssueCategoryOutOfRange indicates that a value can't be represented in the format that the log uses. IssueCategoryOutOfRange = "out_of_range" + // IssueCategoryCorruptedRead indicates that a value was corrupted during reading. + IssueCorruptedRead = "corrupted_read" )