Skip to content

Commit a2fd0a3

Browse files
authored
Merge pull request #608 from ddps-lab/azure-collector
Type covert to object
2 parents 79696b9 + ef2a44f commit a2fd0a3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

collector/spot-dataset/azure/lambda/current_collector/utils/compare_data.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
# compare previous collected workload with current collected workload
55
# return changed workload
66
def compare_sps(previous_df, current_df, workload_cols, feature_cols):
7-
previous_df = previous_df.copy()
8-
current_df = current_df.copy()
7+
previous_df = previous_df.copy().astype(object)
8+
current_df = current_df.copy().astype(object)
99

1010
fill_values = {
1111
'OndemandPrice': -1,

0 commit comments

Comments
 (0)