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
We ran in into an issue where the response of a Civi API call couldn't be stored in the civicrm_api_call table's reply column, because it was too long.
The php error was:
mysqli_sql_exception: Data too long for column 'reply' at row 1 in mysqli_stmt->execute()
(Line 184 in /vendor/civimrf/cmrf_abstract_core/CMRF/PersistenceLayer/SQLPersistingCallFactory.php).
We were able to fix this by setting the column type to longtext, and would like to discuss if this would make sense in general as well.
The text was updated successfully, but these errors were encountered:
Hi there 👋
We ran in into an issue where the response of a Civi API call couldn't be stored in the
civicrm_api_call
table'sreply
column, because it was too long.The php error was:
We were able to fix this by setting the column type to
longtext
, and would like to discuss if this would make sense in general as well.The text was updated successfully, but these errors were encountered: