Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
4 changes: 2 additions & 2 deletions lib-injection/build/build_lib_injection_weblog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ NC='\033[0m'
# Retry configuration
MAX_RETRIES=${MAX_RETRIES:-3}
INITIAL_DELAY=${INITIAL_DELAY:-5}
BUILD_TIMEOUT=${BUILD_TIMEOUT:-600} # 10 minutes timeout in seconds
BUILD_TIMEOUT=${BUILD_TIMEOUT:-1200} # 20 minutes timeout in seconds

print_usage() {
echo -e "${WHITE_BOLD}DESCRIPTION${NC}"
Expand Down Expand Up @@ -153,4 +153,4 @@ else
retry_with_backoff "docker buildx build ${PLATFORM_ARGS} -t weblog-injection:latest --load ."
fi

cd $CURRENT_DIR
cd $CURRENT_DIR
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM public.ecr.aws/docker/library/python:3.8
FROM public.ecr.aws/docker/library/python:3.9

ENV PYTHONUNBUFFERED 1
ENV DJANGO_SETTINGS_MODULE django_app
Expand Down
4 changes: 4 additions & 0 deletions tests/auto_inject/test_auto_inject_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ class TestSimpleInstallerAutoInjectManualProfiling(base.AutoInjectBaseTest):
context.vm_name in ["Ubuntu_24_amd64", "Ubuntu_24_arm64"] and context.weblog_variant == "test-app-nodejs",
reason="PROF-11264",
)
@irrelevant(
context.vm_name in ["Ubuntu_20_amd64", "Ubuntu_20_arm64"] and context.weblog_variant == "test-app-python",
reason="Python version too old",
)
def test_profiling(self):
logger.info(f"Launching test_install for : [{context.vm_name}]...")
self._test_install(context.virtual_machine, profile=True)
Expand Down
Loading