Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Multi destination #26

Closed
wants to merge 16 commits into from
Closed
Prev Previous commit
Next Next commit
WIP
  • Loading branch information
jhlee-mitre committed Sep 9, 2022
commit 05854de9628a14a88efb4e867b3b1a138ba4bbec
4 changes: 2 additions & 2 deletions lib/TestScriptRunnable.rb
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def endpoints(endpoints = nil)
@endpoints
end

def clients(script)
def client(script)
if script.destination.length > endpoints.length
FHIR.logger.error "[.initialize] Not enough server endpoints (#{endpoints.length}) for destination (#{script.destination.length}) in TestScript"
exit
Expand Down Expand Up @@ -109,7 +109,7 @@ def initialize script
end

def run
clients(script)
client(script)
fresh_testreport

preprocessing # TODO: remove this
Expand Down