Skip to content

Commit

Permalink
Issue #3425: Local cluster - fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mzueva committed Jan 14, 2024
1 parent 5a27ff5 commit 4fd222c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
import org.springframework.stereotype.Service;

import java.time.LocalDateTime;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Optional;
Expand Down Expand Up @@ -135,7 +135,7 @@ public boolean reassignPoolNode(LocalRegion region, String nodeLabel, Long newId

@Override
public Map<String, String> buildContainerCloudEnvVars(LocalRegion region) {
return Collections.emptyMap();
return new HashMap<>();
}

@Override
Expand Down

0 comments on commit 4fd222c

Please sign in to comment.