Deployment Type and Version:
-
Type: Grist Omnibus (Docker - Locally hosted)
-
Version: 1.7.3
-
Environment:
- This is a relatively new internal local deployment, no external access.
- test deployment
- about a month
- I am the sole-owner/user/administrator and new to Grist.
- All Self-Checks are Green Checkmarks!
- GRIST_SANDBOX_FLAVOR is set to gvisor
- No issues with sandboxing or python processing
- This is a relatively new internal local deployment, no external access.
Symptom:
- Action Formula (
Triggercolumn) executes successfully (returns correct dictionary) but seems to fail silently, refusing to write records to the target table.
Key Diagnostics Confirmed:
-
The source column (
$Unpack_ItemsinData_Receipts) is set toTriggertype. -
The formula output is the correct dictionary structure (e.g.,
{'Data_Receipt_Items': [...]}). -
The target table (
Data_Receipt_Items) is fully writable via the Grist UI. -
All data types (Text, Numeric, Boolean) and table names have been verified as exact matches multiple times.
-
@grist.UserTable class Data_Receipt_Items: Receipt_Barcode = grist.Text() Item_QTY = grist.Int() Item_Number = grist.Int() Item_Description = grist.Text() Item_Value = grist.Numeric() Item_Taxable = grist.Bool()
-
Minimal Test Case in $Unpack_Items which is Failing:
-
# This minimal code produces the dictionary but fails to write the record: return {'Data_Receipt_Items': [ { 'Receipt_Barcode': '12345678901234567890', 'Item_QTY': 1, 'Item_Number': 9999, 'Item_Description': "TEST ITEM", 'Item_Value': 1.99, 'Item_Taxable': False } ]}
I’m unable to find any suitable console/logs that call out any direct issues with the above. I hope these are of some use: They’re directly related to a recent run of the minimal code (above). No other obvious errors/logs that I can see.
-
2025-10-09T17:21:21.069965052Z 2025-10-09 17:21:21.069 - debug: NSandbox pyCall sandboxPid=954, flavor=gvisor, command=undefined, entryPoint=(default), docId=hBZJmgAYnGnfU1VGX9ounm, funcName=apply_user_actions, loadMs=5 2025-10-09T17:21:21.070617841Z 2025-10-09 17:21:21.070 - debug: Sandbox memory memory=116301824, sandboxPid=954, flavor=gvisor, command=undefined, entryPoint=(default), docId=hBZJmgAYnGnfU1VGX9ounm
I’ve been troubleshooting this on my own and with AI assistance for a few days, to no avail. I’m not sure if I’m simply missing something or something is broken. Any assistance would be greatly appreciated.