Skip to content

Commit 8b94c17

Browse files
authored
[Cherry-Pick-Main][Server] Feature table not being returned with pipeline async results (#47)
1 parent 8f5ada8 commit 8b94c17

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

func_tests/pytest_tests/python_core_functions/test_functions.py

-2
Original file line numberDiff line numberDiff line change
@@ -196,9 +196,7 @@ def test_dsk_pipeline_data(dsk_proj):
196196
},
197197
]
198198
data, stats = dsk.pipeline.get_cached_data(pipeline_step=1)
199-
import pdb
200199

201-
pdb.set_trace()
202200
assert expected_datasegment == data
203201

204202

src/server/datamanager/sandbox.py

+1
Original file line numberDiff line numberDiff line change
@@ -754,6 +754,7 @@ def async_retrieve(self, request, project_uuid, sandbox_uuid, err_queue=deque())
754754
statistics_summary = calculate_feature_stats(
755755
feature_data, feature_table, label_column, sandbox.uuid
756756
)
757+
summary = feature_data
757758

758759
elif sandbox.result_type == "grid_search":
759760
result_name = "grid_result.{}".format(sandbox_uuid)

0 commit comments

Comments
 (0)