davidradl commented on code in PR #25772: URL: https://github.com/apache/flink/pull/25772#discussion_r1878356116
########## flink-state-backends/flink-statebackend-forst/src/main/java/org/apache/flink/state/forst/ForStResourceContainer.java: ########## @@ -190,7 +191,10 @@ public DBOptions getDbOptions() { // configured, // fallback to local directory currently temporarily. if (remoteForStPath != null) { - flinkEnv = new FlinkEnv(remoteForStPath.toString(), forstFileSystem); + flinkEnv = + new FlinkEnv( + remoteForStPath.toString(), + new StringifiedForStFileSystem(forstFileSystem)); Review Comment: I am not very familiar with this code. I wonder if forstFileSystem can be created stringified, or is there a need for it to be around in a non-stringified form? -- 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: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org