Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: upgrade syslog-ng version #2684

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/ci-lite.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ jobs:
- name: Return status 'healthy'
run: python3 tests/test_healthcheck_healthy.py --host sc4s --port 8090
- name: Return status 'queue size exceeded limit'
run: python3 tests/test_healthcheck_queue_size_limit.py --limit 10000 --host sc4s --port 8090
run: sleep 10 && python3 tests/test_healthcheck_queue_size_limit.py --limit 10000 --host sc4s --port 8090

test-healthcheck-unit-tests:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ jobs:
- name: Return status 'healthy'
run: python3 tests/test_healthcheck_healthy.py --host sc4s --port 8090
- name: Return status 'queue size exceeded limit'
run: python3 tests/test_healthcheck_queue_size_limit.py --limit 10000 --host sc4s --port 8090
run: sleep 10 && python3 tests/test_healthcheck_queue_size_limit.py --limit 10000 --host sc4s --port 8090

test-healthcheck-unit-tests:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion package/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#work. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.


ARG SYSLOGNG_VERSION=4.8.1
ARG SYSLOGNG_VERSION=4.9.0
FROM ghcr.io/axoflow/axosyslog:${SYSLOGNG_VERSION}


Expand Down
2 changes: 1 addition & 1 deletion package/Dockerfile.lite
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#work. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.


ARG SYSLOGNG_VERSION=4.8.1
ARG SYSLOGNG_VERSION=4.9.0
FROM ghcr.io/axoflow/axosyslog:${SYSLOGNG_VERSION}


Expand Down
2 changes: 1 addition & 1 deletion package/etc/syslog-ng.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@version:4.8
@version:4.9


# syslog-ng configuration file.
Expand Down
2 changes: 1 addition & 1 deletion package/lite/etc/syslog-ng.conf.jinja
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@version:4.8
@version:4.9


# syslog-ng configuration file.
Expand Down
2 changes: 1 addition & 1 deletion tests/Dockerfile.nc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG SYSLOGNG_VERSION=4.8.1
ARG SYSLOGNG_VERSION=4.9.0
FROM ghcr.io/axoflow/axosyslog:${SYSLOGNG_VERSION}

RUN apk add -U netcat-openbsd
Loading