davidradl commented on code in PR #25772: URL: https://github.com/apache/flink/pull/25772#discussion_r1878359008
########## 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: NIT: `forstFileSystem` and `StringifiedForStFileSystem` . We should be consistent in the variable names `ForS` or `Fors`. -- 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