Skip to content

Commit 51bb320

Browse files
committed
fix for inputs
1 parent 87467fc commit 51bb320

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

railib/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -683,7 +683,7 @@ def is_txn_term_state(state: str) -> bool:
683683

684684
def exec(ctx: Context, database: str, engine: str, command: str,
685685
inputs: dict = None, readonly: bool = True) -> list:
686-
async_result = exec_async(ctx, database, engine, command, readonly=readonly)
686+
async_result = exec_async(ctx, database, engine, command, inputs=inputs, readonly=readonly)
687687
if isinstance(async_result, list): # in case of if short-path, return results directly, no need to poll for state
688688
return async_result
689689

0 commit comments

Comments
 (0)