AlexYinHan commented on code in PR #27185:
URL: https://github.com/apache/flink/pull/27185#discussion_r2488535970


##########
flink-state-backends/flink-statebackend-forst/src/main/java/org/apache/flink/state/forst/fs/StringifiedForStFileSystem.java:
##########
@@ -30,10 +30,10 @@
  */
 public class StringifiedForStFileSystem {
 
-    private ForStFlinkFileSystem fileSystem;
+    private ForStFileSystemDecorator fileSystem;
 
     public StringifiedForStFileSystem(ForStFlinkFileSystem fileSystem) {
-        this.fileSystem = fileSystem;
+        this.fileSystem = new ForStFileSystemDecorator(fileSystem);

Review Comment:
   Should have used ```ForStFileSystemUtils.tryDecorate```. Let me fix it.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to