Skip to content

Commit

Permalink
feat: storage now have a namespace parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
loicmathieu committed Nov 21, 2024
1 parent 0568975 commit 86aa481
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version=0.20.0-SNAPSHOT
kestraVersion=[0.18,)
kestraVersion=[0.20,)
4 changes: 2 additions & 2 deletions src/test/java/io/kestra/plugin/kubernetes/PodCreateTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -245,14 +245,14 @@ void inputOutputFiles() throws Exception {

assertThat(run.getVars().get("extract"), is("I'm here"));

InputStream get = storageInterface.get(null, run.getOutputFiles().get("xml"));
InputStream get = storageInterface.get(null, null, run.getOutputFiles().get("xml"));

assertThat(
CharStreams.toString(new InputStreamReader(get)),
is("1\n3\n")
);

get = storageInterface.get(null, run.getOutputFiles().get("csv"));
get = storageInterface.get(null, null, run.getOutputFiles().get("csv"));

assertThat(
CharStreams.toString(new InputStreamReader(get)),
Expand Down

0 comments on commit 86aa481

Please sign in to comment.