Skip to content

Commit

Permalink
Fix null sdkTypes
Browse files Browse the repository at this point in the history
Signed-off-by: Andres Gomez Ferrer <[email protected]>
  • Loading branch information
andresgomezfrr committed Jan 23, 2023
1 parent d565ed5 commit 51e07ef
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions flytekit-java/src/main/java/org/flyte/flytekit/SdkTypes.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,10 @@ public Void promiseFor(String nodeId) {
public Map<String, Variable> getVariableMap() {
return Collections.emptyMap();
}

@Override
public Map<String, SdkBindingData<?>> toSdkBindingMap(Void value) {
return Collections.emptyMap();
}
}
}

0 comments on commit 51e07ef

Please sign in to comment.