Skip to content

Commit

Permalink
테스트를 위해 우선 기존 colletor와 호환되는 방식으로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
krtaiyang committed Feb 9, 2025
1 parent 0938101 commit 3dc053b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ def lambda_handler(event, _):
raise ValueError(f"Invalid lambda action.")


price_if_df = pd.DataFrame(S3.read_file(AZURE_CONST.S3_LATEST_PRICE_IF_GZIP_SAVE_PATH, 'pkl.gz'))
# price_if_df = S3.read_file(AZURE_CONST.S3_LATEST_PRICE_IF_GZIP_SAVE_PATH, 'pkl.gz')
price_if_df = pd.DataFrame(S3.read_file(AZURE_CONST.LATEST_FILENAME, 'json'))
price_eviction_sps_df = merge_price_eviction_sps_df(price_if_df, sps_res_df)

if sps_res_df is None: raise ValueError("sps_res_df is None")
Expand Down

0 comments on commit 3dc053b

Please sign in to comment.