Skip to content

Commit

Permalink
fix(pollux): Fix column meta_next_retry (#413)
Browse files Browse the repository at this point in the history
  • Loading branch information
FabioPinheiro authored Mar 2, 2023
1 parent bf11d94 commit c02aba8
Showing 1 changed file with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ class JdbcPresentationRepository(
| request_presentation_data,
| credentials_to_use,
| meta_retries,
| next_retry,
| last_failure
| meta_next_retry,
| meta_last_failure
| ) values (
| ${record.id},
| ${record.createdAt},
Expand Down Expand Up @@ -148,8 +148,8 @@ class JdbcPresentationRepository(
| presentation_data,
| credentials_to_use,
| meta_retries,
| next_retry,
| last_failure
| meta_next_retry,
| meta_last_failure
| FROM public.presentation_records
""".stripMargin
.query[PresentationRecord]
Expand Down Expand Up @@ -184,8 +184,8 @@ class JdbcPresentationRepository(
| presentation_data,
| credentials_to_use,
| meta_retries,
| next_retry,
| last_failure
| meta_next_retry,
| meta_last_failure
| FROM public.presentation_records
| WHERE $inClauseFragment
""".stripMargin
Expand Down Expand Up @@ -213,8 +213,8 @@ class JdbcPresentationRepository(
| presentation_data,
| credentials_to_use,
| meta_retries,
| next_retry,
| last_failure
| meta_next_retry,
| meta_last_failure
| FROM public.presentation_records
| WHERE id = $recordId
""".stripMargin
Expand Down Expand Up @@ -242,8 +242,8 @@ class JdbcPresentationRepository(
| presentation_data,
| credentials_to_use,
| meta_retries,
| next_retry,
| last_failure
| meta_next_retry,
| meta_last_failure
| FROM public.presentation_records
| WHERE thid = $thid
""".stripMargin
Expand Down

0 comments on commit c02aba8

Please sign in to comment.