Skip to content

Commit

Permalink
fix: fix logging issue where numbers were expected
Browse files Browse the repository at this point in the history
  • Loading branch information
steveoh committed Feb 7, 2023
1 parent a5c4b1b commit 926032f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions row_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
INDEX = environ["INDEX_FILE_LOCATION"]
BUCKET_NAME = environ["INPUT_BUCKET"]
OUTPUT_BUCKET_NAME = environ["OUTPUT_BUCKET"]
TASK_INDEX = environ["CLOUD_RUN_TASK_INDEX"]
TASK_COUNT = environ["CLOUD_RUN_TASK_COUNT"]
TOTAL_FILES = environ["TOTAL_FILES"]
TASK_INDEX = int(environ["CLOUD_RUN_TASK_INDEX"])
TASK_COUNT = int(environ["CLOUD_RUN_TASK_COUNT"])
TOTAL_FILES = int(environ["TOTAL_FILES"])

#: Set up main function
def main():
Expand Down

0 comments on commit 926032f

Please sign in to comment.