Skip to content

Commit

Permalink
fix verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
VanyaBelyaev committed Feb 2, 2024
1 parent 7f40759 commit c1320f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ostap/parallel/parallel_copy.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def copy_files ( file_pairs , progress = True , maxfiles = 5 , copier = None , *

task = CopyTask ( copier = copier )

wmgr = WorkManager ( silent = not progress , **kwargs )
wmgr = WorkManager ( silent = not progress , progress = progress , **kwargs )

if maxfiles < 1 : maxfiles = 1

Expand Down
2 changes: 1 addition & 1 deletion ostap/parallel/parallel_pathos.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def __init__( self ,
from ostap.parallel.utils import get_workers
ppservers = get_workers( 'Pathos' , 'OSTAP_PPSERVERS' , local_host )

## use Paralell python if ppservers are specified or explicit flag
## use Parallel python if ppservers are specified or explicit flag
if ppservers or kwa.pop ( 'PP' , False ) or kwa.pop ( 'Parallel' , False ) :

## remove duplicates (if any) - do not sort!
Expand Down

0 comments on commit c1320f0

Please sign in to comment.