fix: 不要なトランザクション宣言を削除

This commit is contained in:
usbharu 2023-12-06 20:46:20 +09:00
parent b3bbefb543
commit 5da03cf200
1 changed files with 12 additions and 12 deletions

View File

@ -99,7 +99,7 @@ class InboxJobProcessor(
val verify = signature?.let { verifyHttpSignature(httpRequest, it, transaction) } ?: false
transaction.transaction {
logger.debug("Is verifying success? {}", verify)
val activityPubProcessor =
@ -114,7 +114,7 @@ class InboxJobProcessor(
activityPubProcessor.process(ActivityPubProcessContext(value, jsonNode, httpRequest, signature, verify))
logger.info("SUCCESS Process inbox. type: {}", param.type)
}
}
override fun job(): InboxJob = InboxJob