Skip to content

Commit

Permalink
Merge pull request #7781 from jhorvath/fix-adb-deps
Browse files Browse the repository at this point in the history
Fix adding dependencies for ADB
  • Loading branch information
jhorvath authored Sep 23, 2024
2 parents 0b61f74 + 4fb6353 commit 271279f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,10 @@ public CompletableFuture<Object> runCommand(String command, List<Object> argumen
return new TenancyStep();
}).stepForClass(TenancyStep.class, (s) -> new CompartmentStep())
.stepForClass(CompartmentStep.class, (s) -> new SuggestedStep(null))
.stepForClass(SuggestedStep.class, (s) -> new ProjectStep())
.stepForClass(ProjectStep.class, (s) -> new ItemTypeStep())
.build();
Steps.getDefault()
.executeMultistep(new ItemTypeStep(), Lookups.fixed(nsProvider))
.executeMultistep(new ProjectStep(), Lookups.fixed(nsProvider))
.thenAccept(values -> {
Project project = values.getValueForStep(ProjectStep.class);
CompletableFuture<? extends OCIItem> item = null;
Expand Down

0 comments on commit 271279f

Please sign in to comment.