Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
zzeppozz committed Dec 23, 2024
1 parent d105d5a commit 964dcca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion aws/lambda/bison_s3_create_bison.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
from datetime import datetime
import time

print("*** Loading function bison_s3_create_bison")
PROJECT = "bison"
print(f"*** Loading function {PROJECT}_s3_create_bison")

# .............................................................................
# Dataload filename postfixes
Expand Down
4 changes: 2 additions & 2 deletions aws/lambda/bison_s8_calc_stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

PROJECT = "bison"
TASK = "calc_stats"
print(f"*** Loading function {PROJECT}_s8_{TASK}")
print(f"*** Loading function {PROJECT} workflow step {TASK}")

# .............................................................................
# Dataload filename postfixes
Expand Down Expand Up @@ -119,5 +119,5 @@ def lambda_handler(event, context):

return {
"statusCode": 200,
"body": f"Executed bison_s1_annotate_riis lambda starting EC2 {instance_id}"
"body": f"Executed {PROJECT} {TASK} lambda starting EC2 {instance_id}"
}

0 comments on commit 964dcca

Please sign in to comment.