|
|
@@ -103,7 +103,7 @@ def __run_new_modelverse_activity(address, username, password, taskname, pipe, c
|
|
|
model = OUTPUT()
|
|
|
if callback is not None:
|
|
|
__invoke(callback, model)
|
|
|
- controller.addInput(Event("data_input", "action_in", [None, None]))
|
|
|
+ controller.addInput(Event("data_input", "action_in", [None]))
|
|
|
time.sleep(2)
|
|
|
elif t == "SC":
|
|
|
while 1:
|
|
|
@@ -131,7 +131,7 @@ def __run_new_modelverse_activity(address, username, password, taskname, pipe, c
|
|
|
response = pipe.recv()
|
|
|
|
|
|
if response.name == "output":
|
|
|
- controller.addInput(Event("data_input", "action_in", [response.parameters, None]))
|
|
|
+ controller.addInput(Event("data_input", "action_in", [response.parameters]))
|
|
|
else:
|
|
|
raise Exception("Unknown data from SC to MV: " + str(response))
|
|
|
empty = False
|
|
|
@@ -273,7 +273,7 @@ def transformation_add_MT(source_metamodels, target_metamodels, operation_name,
|
|
|
|
|
|
if callback is not None:
|
|
|
__invoke(callback, model)
|
|
|
- controller.addInput(Event("data_input", "action_in", [None, None]))
|
|
|
+ controller.addInput(Event("data_input", "action_in", [None]))
|
|
|
|
|
|
return OUTPUT()
|
|
|
|
|
|
@@ -286,7 +286,7 @@ def transformation_add_AL(source_metamodels, target_metamodels, operation_name,
|
|
|
|
|
|
if callback is not None:
|
|
|
__invoke(callback, model)
|
|
|
- controller.addInput(Event("data_input", "action_in", [None, None]))
|
|
|
+ controller.addInput(Event("data_input", "action_in", [None]))
|
|
|
|
|
|
return OUTPUT()
|
|
|
|
|
|
@@ -296,7 +296,7 @@ def transformation_add_MANUAL(source_metamodels, target_metamodels, operation_na
|
|
|
|
|
|
if callback is not None:
|
|
|
__invoke(callback, model)
|
|
|
- controller.addInput(Event("data_input", "action_in", [None, None]))
|
|
|
+ controller.addInput(Event("data_input", "action_in", [None]))
|
|
|
|
|
|
return OUTPUT()
|
|
|
|