From 2674d5b3b5acb83953843445fc2ecdbf828db869 Mon Sep 17 00:00:00 2001 From: Corey Sotiropoulos Date: Mon, 19 Jan 2026 06:45:11 +0000 Subject: [PATCH 1/2] [ci] Remove unnecessary log check exclusions This "Invalid zone requested:" logging no longer exists so doesn't need to be excluded. --- .github/workflows/docker_test.yml | 4 ++-- .github/workflows/runner_test.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker_test.yml b/.github/workflows/docker_test.yml index 0b997d9bda9..287770e672b 100644 --- a/.github/workflows/docker_test.yml +++ b/.github/workflows/docker_test.yml @@ -149,12 +149,12 @@ jobs: found_issues=false for log_file in ./*.log; do if [[ -f "$log_file" && -s "$log_file" ]]; then - if grep -qi "warning\|error\|crash\|critical" "$log_file" && grep -qv "Invalid zone requested:"; then + if grep -qi "warning\|error\|crash\|critical" "$log_file"; then found_issues=true log_name=$(basename "$log_file" .log | sed 's/.*/\u&/; s/-\(.\)/ \u\1/g') echo "### :x: ${log_name} Checks Failed" >> $GITHUB_STEP_SUMMARY echo "\`\`\`" >> $GITHUB_STEP_SUMMARY - grep -i "warning\|error\|crash\|critical" "$log_file" | grep -v "Invalid zone requested:" >> $GITHUB_STEP_SUMMARY + grep -i "warning\|error\|crash\|critical" "$log_file" >> $GITHUB_STEP_SUMMARY echo "\`\`\`" >> $GITHUB_STEP_SUMMARY echo "" >> $GITHUB_STEP_SUMMARY fi diff --git a/.github/workflows/runner_test.yml b/.github/workflows/runner_test.yml index f4191387ba3..348d52e3020 100644 --- a/.github/workflows/runner_test.yml +++ b/.github/workflows/runner_test.yml @@ -199,12 +199,12 @@ jobs: found_issues=false for log_file in ./log/*.log; do if [[ -f "$log_file" && -s "$log_file" ]]; then - if grep -qi "warning\|error\|crash\|critical" "$log_file" && grep -qv "Invalid zone requested:"; then + if grep -qi "warning\|error\|crash\|critical" "$log_file"; then found_issues=true log_name=$(basename "$log_file" .log | sed 's/.*/\u&/; s/-\(.\)/ \u\1/g') echo "### :x: ${log_name} Checks Failed" >> $GITHUB_STEP_SUMMARY echo "\`\`\`" >> $GITHUB_STEP_SUMMARY - grep -i "warning\|error\|crash\|critical" "$log_file" | grep -v "Invalid zone requested:" >> $GITHUB_STEP_SUMMARY + grep -i "warning\|error\|crash\|critical" "$log_file" >> $GITHUB_STEP_SUMMARY echo "\`\`\`" >> $GITHUB_STEP_SUMMARY echo "" >> $GITHUB_STEP_SUMMARY fi From 73f63b6471f7695a63cf08697ca1b0e4f71bc983 Mon Sep 17 00:00:00 2001 From: Corey Sotiropoulos Date: Mon, 19 Jan 2026 07:19:42 +0000 Subject: [PATCH 2/2] [xi_test] Skip ReportLuaModuleUsage --- src/map/map_engine.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/map/map_engine.cpp b/src/map/map_engine.cpp index c7b8a8c3cfc..91258c1b0dd 100644 --- a/src/map/map_engine.cpp +++ b/src/map/map_engine.cpp @@ -340,7 +340,10 @@ void MapEngine::do_init() luautils::OnServerStart(); - moduleutils::ReportLuaModuleUsage(); + if (!engineConfig_.isTestServer) + { + moduleutils::ReportLuaModuleUsage(); + } db::enableTimers();