Skip to content

Commit

Permalink
[hotfix] Use FlinkEnv in tests for ForStStateBackend
Browse files Browse the repository at this point in the history
  • Loading branch information
Zakelly committed Dec 4, 2024
1 parent ae52bf2 commit 7d95fe8
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

/** Tests for the async keyed state backend part of {@link ForStStateBackend}. */
@ExtendWith(ParameterizedTestExtension.class)
class ForStStateBackendTestV2 extends StateBackendTestV2Base<ForStStateBackend> {
class ForStStateBackendV2Test extends StateBackendTestV2Base<ForStStateBackend> {

@TempDir private static java.nio.file.Path tempFolder;
@TempDir private static java.nio.file.Path tempFolderForForStLocal;
Expand Down Expand Up @@ -94,7 +94,6 @@ protected ConfigurableStateBackend getStateBackend() throws Exception {
if (hasRemoteDir) {
config.set(REMOTE_DIRECTORY, tempFolderForForstRemote.toString());
}
backend.configure(config, Thread.currentThread().getContextClassLoader());
return new ForStStateBackend();
return backend.configure(config, Thread.currentThread().getContextClassLoader());
}
}

0 comments on commit 7d95fe8

Please sign in to comment.