Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion source/main/logs.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
from time import sleep
from os import remove, rmdir
from requests import get
from copy import deepcopy

import source.utils.utils
from source.utils.utils import write_file, create_folder, copy_or_write_s3, create_command, writefile_s3, LOGS_RESULTS, create_s3_if_not_exists, LOGS_BUCKET, ROOT_FOLDER, set_clients, write_or_dl, write_s3, athena_query
Expand All @@ -33,7 +34,7 @@ def __init__(self, region, dl):
"""

self.region = region
self.results = LOGS_RESULTS
self.results = deepcopy(LOGS_RESULTS)
self.dl = dl

#Also created for cloudtrail-logs results
Expand Down