This is an automated email from the ASF dual-hosted git repository.
benedict pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/cassandra.git
The following commit(s) were added to refs/heads/trunk by this push:
new df4eae7fb9 ninja follow-up to CASSANDRA-20713: fix SSTableReaderTest
df4eae7fb9 is described below
commit df4eae7fb96daec15f74444e40453241f6c1950e
Author: Benedict Elliott Smith <[email protected]>
AuthorDate: Tue Jun 17 08:03:48 2025 +0100
ninja follow-up to CASSANDRA-20713: fix SSTableReaderTest
---
src/java/org/apache/cassandra/io/FSError.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/java/org/apache/cassandra/io/FSError.java
b/src/java/org/apache/cassandra/io/FSError.java
index 241c8c5585..e0c9a7bcb4 100644
--- a/src/java/org/apache/cassandra/io/FSError.java
+++ b/src/java/org/apache/cassandra/io/FSError.java
@@ -70,7 +70,7 @@ public abstract class FSError extends IOError
@Override
public String getMessage()
{
- return message;
+ return message == null ? super.getMessage() : message;
}
@Override
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]