We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a94d476 commit 88a775dCopy full SHA for 88a775d
1 file changed
cloud-computing/src/app.py
@@ -28,6 +28,7 @@ def do_bulk_processing():
28
if os.path.isfile(iexec_dataset_filepath):
29
with open(iexec_dataset_filepath) as f:
30
text += f.read()
31
+ print(text)
32
return text
33
34
def handle_dataset():
@@ -136,7 +137,7 @@ def save_result(text):
136
137
computation_text = do_some_computation()
138
print(computation_text)
139
result += computation_text
- if 'BULK_SIZE' in os.environ:
140
+ if 'IEXEC_BULK_SLICE_SIZE' in os.environ:
141
bulk_dataset_text = do_bulk_processing()
142
result += bulk_dataset_text
143
dataset_text = handle_dataset()
0 commit comments