Skip to content

Commit

Permalink
Update base OS for the image
Browse files Browse the repository at this point in the history
  • Loading branch information
unaxfromsibiria committed Dec 11, 2024
1 parent 781abf1 commit 05b63f0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:bullseye
FROM ubuntu:focal

RUN apt update -y
RUN apt install python3-minimal python3-systemd python3-pip python3-setuptools python3-venv -y
Expand Down
6 changes: 3 additions & 3 deletions jd2cw/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def print_version(ctx, param, value):
"--version", is_flag=True, callback=print_version, expose_value=False, is_eager=True
)
@click.option(
"--verbose", is_flag=True, default=True, help="With debug logs"
"--verbose", is_flag=True, default=False, help="With debug logs"
)
def main(cursor, logs, prefix, log_group, retention, config, verbose: bool):
logger = create_logger(debug=verbose)
Expand Down Expand Up @@ -120,8 +120,8 @@ def main(cursor, logs, prefix, log_group, retention, config, verbose: bool):

try:
while True:
reader.wait()
logger.debug("Logs changed")
event_type = reader.wait()
logger.debug("Logs changed with event %s", event_type)
for log_stream, messages in itertools.groupby(
filter(CloudWatchClient.retain_message, reader),
key=client.log_stream_for):
Expand Down
2 changes: 1 addition & 1 deletion jd2cw/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "0.3.2"
version = "0.3.3"

0 comments on commit 05b63f0

Please sign in to comment.