you should echo every part of this to make sure the password is what you expect
you should echo every part of this to make sure the password is what you expect
ExecutionErr: error during execution of the script:In the past I've seen this with OOMs, but this script is only peaking at 116MB on a worker with 2GB of memory so I don't understand how it can be memory related.
process terminated by signal: Some(
9,
), stopped_signal: None, core_dumped: false

import asyncio
import os
from playwright.async_api import async_playwright
from PIL import Image, ImageFont, ImageDraw
import base64
from io import BytesIO
import datetime
import logging
import subprocess
import sys
import cv2
import numpy as np
from PIL import Image
def install_playwright():
try:
subprocess.check_call([sys.executable, "-m", "pip", "install", "playwright"])
subprocess.check_call([sys.executable, "-m", "pip", "install", "azure-storage-blob"])
subprocess.check_call([sys.executable, "-m", "pip", "install", "azure-core"])
subprocess.check_call([sys.executable, "-m", "playwright", "install"])
subprocess.check_call([sys.executable, "-m", "playwright", "install-deps"])
print("Playwright installed successfully.")
except subprocess.CalledProcessError as e:
print(f"An error occurred while installing Playwright: {e}")
install_playwright()