You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#59 introduced a regression wherein it renamed a keyword parameter.
- materialize_transactions if uses_transactions+ materialize_transactions if materialize_transactions
The problem with this is that materialize_transactions is a function, but in the context of this method it is evaluated as the keyword argument. Thus the above statement became a no-op.
The text was updated successfully, but these errors were encountered:
dhruvCW
changed the title
raw_execute: use_transaction regression
with_trilogy_connection: materialize_transactions method is overshadowed by the keyword argument.
Aug 15, 2023
Thank you dearly for helping to make Trilogy great!
Hey 👋
I was incorrect in my original hypothesis. Turns out the issue was the call to materialize_transaction. Given the with_trilogy_connection is a replacement of a rails component the PR introduced an inconsistency.
#59 introduced a regression wherein it renamed a keyword parameter.
The problem with this is that materialize_transactions is a function, but in the context of this method it is evaluated as the keyword argument. Thus the above statement became a no-op.
The text was updated successfully, but these errors were encountered: