From 565a9c5304edf4708df7e96fb20d9abe33cb225d Mon Sep 17 00:00:00 2001 From: Lucian Petrut Date: Thu, 16 May 2024 17:17:50 +0300 Subject: [PATCH] windows: increase package install timeout One "apt-get install" command times out after the default 30 seconds. We'll increase the timeout to 10m. Signed-off-by: Lucian Petrut --- scripts/ceph-windows/setup_ceph_vstart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ceph-windows/setup_ceph_vstart b/scripts/ceph-windows/setup_ceph_vstart index 82fce8fb..12c42ab1 100644 --- a/scripts/ceph-windows/setup_ceph_vstart +++ b/scripts/ceph-windows/setup_ceph_vstart @@ -44,7 +44,7 @@ chmod +x ${VSTART_DIR}/build-ceph-vstart.sh time rsync_cmd $WORKSPACE/ceph ${VSTART_DIR}/build-ceph-vstart.sh ${UBUNTU_SSH_USER}@${UBUNTU_VM_IP}: time SSH_TIMEOUT=4h ssh_exec ./build-ceph-vstart.sh -ssh_exec sudo apt-get install -y python3-prettytable +time SSH_TIMEOUT=10m ssh_exec sudo apt-get install -y python3-prettytable if [[ "$USE_MEMSTORE" == "yes" ]]; then OBJECTSTORE_ARGS="--memstore -o memstore_device_bytes=$VSTART_MEMSTORE_BYTES" -- 2.39.5