From 475ce9d8beed4e9d06a4f407d3a6d4e245622a28 Mon Sep 17 00:00:00 2001 From: "Sven A. Schmidt" Date: Sun, 15 Dec 2024 14:48:01 +0100 Subject: [PATCH] Make IngestCommand.run non-throwing --- Sources/App/Commands/Ingest.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/App/Commands/Ingest.swift b/Sources/App/Commands/Ingest.swift index c0e03703f..c19501bef 100644 --- a/Sources/App/Commands/Ingest.swift +++ b/Sources/App/Commands/Ingest.swift @@ -81,7 +81,7 @@ struct IngestCommand: AsyncCommand { var help: String { "Run package ingestion (fetching repository metadata)" } - func run(using context: CommandContext, signature: SPICommand.Signature) async throws { + func run(using context: CommandContext, signature: SPICommand.Signature) async { let client = context.application.client let db = context.application.db Current.setLogger(Logger(component: "ingest"))