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 e18ebb0 commit 5ef091a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 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,)
2 changes: 1 addition & 1 deletion src/test/java/io/kestra/plugin/mqtt/SuiteTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ void run(AbstractMqttConnection.Version version, String caUri) throws Exception
.build();
Subscribe.Output subscribeOutput = subscribe.run(runContext);

BufferedReader inputStream = new BufferedReader(new InputStreamReader(storageInterface.get(null, subscribeOutput.getUri())));
BufferedReader inputStream = new BufferedReader(new InputStreamReader(storageInterface.get(null, null, subscribeOutput.getUri())));
List<Map<String, Object>> result = new ArrayList<>();
FileSerde.reader(inputStream, r -> result.add((Map<String, Object>) r));

Expand Down

0 comments on commit 5ef091a

Please sign in to comment.