Skip to content

Commit

Permalink
fix: Warning on Invitation generated on Issuance (#1433)
Browse files Browse the repository at this point in the history
Signed-off-by: mineme0110 <[email protected]>
  • Loading branch information
mineme0110 authored Nov 7, 2024
1 parent 94e7ec0 commit 05fdf26
Showing 1 changed file with 27 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,33 @@ object IssueBackgroundJobs extends BackgroundJobsHelper {
val exchange = for {
_ <- ZIO.logDebug(s"Running action with records => $record")
_ <- record match {
case IssueCredentialRecord(
id,
_,
_,
_,
_,
_,
_,
_,
_,
Role.Issuer,
_,
_,
_,
_,
InvitationGenerated,
Some(offer),
_,
_,
_,
_,
_,
_,
_,
_,
) =>
ZIO.debug(s" Connectionless InvitationGenerated record received no processing required") *> ZIO.unit
// Offer should be sent from Issuer to Holder
case IssueCredentialRecord(
id,
Expand Down

0 comments on commit 05fdf26

Please sign in to comment.