fix(backend): follow-up of #15620
Some checks failed
API report (misskey.js) / report (push) Waiting to run
Check Misskey JS version / Check version (push) Waiting to run
Check SPDX-License-Identifier / check-spdx-license-id (push) Waiting to run
Check copyright year / check_copyright_year (push) Waiting to run
Publish Docker image (develop) / Build (linux/amd64) (push) Waiting to run
Publish Docker image (develop) / Build (linux/arm64) (push) Waiting to run
Publish Docker image (develop) / merge (push) Blocked by required conditions
Dockle / dockle (push) Waiting to run
Lint / lint (frontend-embed) (push) Blocked by required conditions
Lint / lint (frontend-shared) (push) Blocked by required conditions
Lint / pnpm_install (push) Waiting to run
Lint / lint (backend) (push) Blocked by required conditions
Lint / lint (frontend) (push) Blocked by required conditions
Lint / lint (misskey-bubble-game) (push) Blocked by required conditions
Lint / lint (misskey-js) (push) Blocked by required conditions
Lint / lint (misskey-reversi) (push) Blocked by required conditions
Lint / lint (sw) (push) Blocked by required conditions
Lint / typecheck (backend) (push) Blocked by required conditions
Lint / typecheck (misskey-js) (push) Blocked by required conditions
Lint / typecheck (sw) (push) Blocked by required conditions
Storybook / build (push) Waiting to run
Test (backend) / Unit tests (backend) (22.11.0) (push) Waiting to run
Test (backend) / E2E tests (backend) (22.11.0) (push) Waiting to run
Test (federation) / Federation test (22.11.0) (push) Waiting to run
Test (frontend) / Unit tests (frontend) (22.11.0) (push) Waiting to run
Test (frontend) / E2E tests (frontend) (chrome, 22.11.0) (push) Waiting to run
Test (misskey.js) / Unit tests (misskey.js) (22.11.0) (push) Waiting to run
Test (production install and build) / Production build (22.11.0) (push) Waiting to run
api.json validation / validate-api-json (22.11.0) (push) Waiting to run
Lint / locale_verify (push) Has been cancelled
Release Manager: sync changelog with PR / edit (push) Has been cancelled

Removes unnecessary arg `disableGlobbing` from chokidar FSWatcher, as it is no longer supports globging
This commit is contained in:
かっこかり 2025-03-07 20:10:32 +09:00 committed by GitHub
parent d7706ef1b5
commit bee4db82bb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -268,7 +268,6 @@ export class FileInfoService {
private async *asyncIterateFrames(cwd: string, command: FFmpeg.FfmpegCommand): AsyncGenerator<string, void> {
const watcher = new FSWatcher({
cwd,
disableGlobbing: true,
});
let finished = false;
command.once('end', () => {