fix: placeholder bug (#2373)

* fix placeholder check

* tiptap v3.29.2

* add s3 max socket env
This commit is contained in:
Philip Okugbe
2026-08-01 11:45:25 +01:00
committed by GitHub
parent 70d2ff8685
commit cd34594b5d
6 changed files with 1214 additions and 1204 deletions
@@ -15,7 +15,7 @@ import { getMimeType } from '../../../common/helpers';
import { Upload } from '@aws-sdk/lib-storage';
import { Logger } from '@nestjs/common';
const S3_MAX_SOCKETS = 200;
const S3_MAX_SOCKETS = parseInt(process.env.AWS_S3_MAX_SOCKETS) || 200;
export class S3Driver implements StorageDriver {
private readonly s3Client: S3Client;