Exemplo n.º 1
0
 def check_args_valid(cls, args, n_outputs):
     SimpleExecutor.check_args_valid(args, n_outputs)
     if "inputs" not in args or n_outputs != 1:
         raise BlameUserException(
             'Incorrect arguments to the sync executor: %s' % repr(args))
Exemplo n.º 2
0
 def __init__(self, worker):
     SimpleExecutor.__init__(self, worker)
Exemplo n.º 3
0
 def __init__(self, worker):
     SimpleExecutor.__init__(self, worker)
Exemplo n.º 4
0
 def check_args_valid(cls, args, n_outputs):
     SimpleExecutor.check_args_valid(args, n_outputs)
     if "inputs" not in args or n_outputs != 1:
         raise BlameUserException('Incorrect arguments to the sync executor: %s' % repr(args))            
Exemplo n.º 5
0
 def check_args_valid(cls, args, n_outputs):
     
     SimpleExecutor.check_args_valid(args, n_outputs)
     if "urls" not in args or "version" not in args or len(args["urls"]) != n_outputs:
         raise BlameUserException('Incorrect arguments to the grab executor: %s' % repr(args))