Skip to content

Commit 6cf6a9f

Browse files
committed
debug
1 parent 14a8325 commit 6cf6a9f

3 files changed

Lines changed: 8 additions & 2 deletions

File tree

redis_sync/src/redis_sync.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# handler to do redis sync from s3
22

33
def sync_handler(event, context):
4-
print("Hello World from Redis sync handler")
4+
print("Marker2 . from Redis sync handler")

terraform/package_lambda.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
set -e
33

4-
echo "🚀 Packaging Lambda1..."
4+
echo "🚀 Packaging Lambda2..."
55

66
# parameters passed in as project_name project_folder abs_build_folder zip_file_name
77

terraform/redis_sync_lambda.tf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@ output "redis_sync_files" {
2323
# excludes = ["test/*", "*.zip", "build/*", "venv/*"]
2424
# }
2525

26+
resource "null_resource" "debug_script" {
27+
provisioner "local-exec" {
28+
command = "echo \"SAW DEBUG >>>>\" && pwd && ls -l ${path.module}"
29+
}
30+
}
31+
2632
resource "null_resource" "debug_dir" {
2733
provisioner "local-exec" {
2834
command = "ls -ltr ${local.redis_sync_dir}"

0 commit comments

Comments
 (0)