Skip to content

Commit 7383aed

Browse files
authored
Merge branch 'logicalclocks:main' into the-merge-apis-move-hsfs
2 parents ee18a27 + 85105f5 commit 7383aed

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Diff for: python/hsfs/hopsworks_udf.py

+9
Original file line numberDiff line numberDiff line change
@@ -713,6 +713,14 @@ def from_response_json(
713713
if "dropped_argument_names" in json_decamelized
714714
else None
715715
)
716+
transformation_function_argument_names = (
717+
[
718+
arg_name.strip()
719+
for arg_name in json_decamelized["transformation_function_argument_names"]
720+
]
721+
if "transformation_function_argument_names" in json_decamelized
722+
else None
723+
)
716724
statistics_features = (
717725
[
718726
feature.strip()
@@ -762,6 +770,7 @@ def from_response_json(
762770
dropped_argument_names=dropped_argument_names,
763771
dropped_feature_names=dropped_feature_names,
764772
feature_name_prefix=feature_name_prefix,
773+
transformation_function_argument_names=transformation_function_argument_names
765774
)
766775

767776
# Set transformation features if already set.

0 commit comments

Comments
 (0)