예제 #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))
예제 #2
0
 def __init__(self, worker):
     SimpleExecutor.__init__(self, worker)
예제 #3
0
파일: sync.py 프로젝트: ZubairNabi/ciel
 def __init__(self, worker):
     SimpleExecutor.__init__(self, worker)
예제 #4
0
파일: sync.py 프로젝트: ZubairNabi/ciel
 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))            
예제 #5
0
파일: grab.py 프로젝트: BeverlyAb/ciel_2.7
 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))