Skip to content

Commit 8c2a119

Browse files
committed
fix handler and remove pycache
1 parent e050d54 commit 8c2a119

File tree

6 files changed

+2
-1
lines changed

6 files changed

+2
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
.runner
33
.pytest_cache
44
_version.py
5+
__pycache__
-171 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
-7.34 KB
Binary file not shown.

compose_runner/aws_lambda/log_poll_handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def handler(event: Dict[str, Any], context: Any) -> Dict[str, Any]:
6060

6161
params: Dict[str, Any] = {
6262
"logGroupName": log_group,
63-
"filterPattern": f'{{"job_id": "{job_id}"}}',
63+
"filterPattern": f'"{job_id}"',
6464
"startTime": int(start_time),
6565
}
6666
if end_time is not None:

0 commit comments

Comments
 (0)