-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error on creating a Form element group with a lengthy name #1254
Comments
… use FEG.name instead
… use FEG.name instead
@himeshr any bundle taken before deploying this change will break when uploading. Is it possible to make this deprecated/optional instead? |
Replacing the "name" with "display" field contents was one of the primary ACs for this card.. which was achieved via DB migration. |
Bundle upload failing for above bundle, marking it as qaFailed due to this error scenario. |
…splay field to avid bundle upload failures
…bundles without PrivilegeType info
FIxed old version bundle upload to work for:
The sample error bundle listed in above comment fails during upload in staging environment due to mismatch in privilegeType UUIDs across staging and prerelease/prod envs, but should work for same env old and new version of bundles. -- Error privilege types in staging env
select *
from privilege where uuid in
('cac5adae-8d99-4cef-a00b-af7d66e31a09',
'305d8287-731b-4094-8139-71bc171b242e'); |
Describe the bug
An error showing up in form designer with FEG name "In the past week, did you or any household member over the age of 15 engage in any of the following activities with your child". Most probably due to the length of the FEG
To Reproduce
Steps to reproduce the behavior:
Server error received :
ERROR: value too long for type character varying(100)
Root cause:
name
field of the form element group can be upto 255 chars. But whatever we receive in name we store indisplay
field for which max characters is only 100.Analysis:
With 100 chars in form element group, in mobile app:
As is:
AC:
Testing: some of the points:
Developer Checklist(Developer fixing the bug should fill this checklist)
The text was updated successfully, but these errors were encountered: