We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 132bbcc commit 81244dcCopy full SHA for 81244dc
mars/services/task/analyzer/analyzer.py
@@ -287,13 +287,9 @@ def _gen_subtask_info(
287
inp_chunks[i] = fetch_chunk
288
for out_chunk in chunk.op.outputs:
289
# Note: `dtypes`, `index_value`, and `columns_value` are lazily
290
- # initialized, so we should initialize them here.
291
- if hasattr(out_chunk, "dtypes"):
292
- out_chunk.dtypes
293
- if hasattr(out_chunk, "index_value"):
294
- out_chunk.index_value
295
- if hasattr(out_chunk, "columns_value"):
296
- out_chunk.columns_value
+ # initialized, so we should call property `params` to initialize
+ # these fields.
+ out_chunk.params
297
processed.add(out_chunk)
298
chunk_graph.add_node(out_chunk)
299
if out_chunk in self._final_result_chunks_set:
0 commit comments