### What? The s3 storage adapter returns a 500 internal server error when a file is not found. It's expected that it will return 404 when a file is not found. ### Why? The getObject function from aws s3 sdk does not return undefined when a blob is not found, but throws a NoSuchKey error: https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-s3/Class/NoSuchKey/ ### How? Check if exception thrown is of type NoSuchKey and return a 404 in that case. Related discord discussion: https://discord.com/channels/967097582721572934/1350826594062696539/1350826594062696539