Skip to content

Commit

Permalink
fix valuefrom service to call correct methods
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandf committed Dec 5, 2023
1 parent c9afcfb commit 844d853
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/engine/src/core/workflows/ValueFromService.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ def get_task_output_value_by_id(self, task_id, _id):
return output

def get_env_value_by_key(self, key):
output = self._env_repo.get_by_key(key)
output = self._env_repo.get_value_by_key(key)
return output

def get_arg_value_by_key(self, key):
output = self._arg_repo.get_by_key(key)
output = self._arg_repo.get_value_by_key(key)
return output

0 comments on commit 844d853

Please sign in to comment.