changeset 459:723d4535252e

WSI tests: set orthanc url
author Alain Mazy <am@osimis.io>
date Wed, 30 Mar 2022 09:35:35 +0200
parents c4d8f9e18421
children 281a599f5338
files Plugins/WSI/Run.py
diffstat 1 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/Plugins/WSI/Run.py	Wed Mar 23 17:52:43 2022 +0100
+++ b/Plugins/WSI/Run.py	Wed Mar 30 09:35:35 2022 +0200
@@ -109,12 +109,15 @@
         
 def CallDicomizer(suffix):
     CallCommand([ args.dicomizer,
+                  '--orthanc=%s' % args.server,
                   '--username=%s' % args.username,
-                  '--password=%s' % args.password ] + suffix)
+                  '--password=%s' % args.password ] + suffix
+                  )
 
     
 def CallDicomToTiff(suffix):
     CallCommand([ args.to_tiff,
+                  '--orthanc=%s' % args.server,
                   '--username=%s' % args.username,
                   '--password=%s' % args.password ] + suffix)