Skip to content

Commit

Permalink
Fix missed function rename, and fix linting err
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredoconnell committed Aug 30, 2023
1 parent 7169c78 commit 7ab7b20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/arcaflow_plugin_sdk/atp.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def run_plugin(
return 1
# Run the read loop
read_thread = threading.Thread(target=self.run_server_read_loop, args=(
plugin_schema, # Plugin schema
plugin_schema, # Plugin schema
work_start_msg["id"], # step ID
decoder, # Decoder
self.stderr, # Stderr
Expand All @@ -125,7 +125,7 @@ def run_plugin(
sys.stdout = out_buffer
sys.stderr = out_buffer
output_id, output_data = plugin_schema.call_step(
work_start_msg["id"], plugin_schema.unserialize_input(work_start_msg["id"], work_start_msg["config"])
work_start_msg["id"], plugin_schema.unserialize_step_input(work_start_msg["id"], work_start_msg["config"])
)
sys.stdout = original_stdout
sys.stderr = original_stderr
Expand Down

0 comments on commit 7ab7b20

Please sign in to comment.