Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.1
-
Fix Version/s: 1.1
-
Labels:None
-
Testcase included:yes
-
Patch Submitted:Yes
-
Number of attachments :
Description
The current implementation of serializeAsArray does not handle nested arrays properly. If I add "list" to be serialized as an array, I receive:
{"list": {
"test": [{
"foo": "bar",
"inner": {"value": "aaaaa"}
}],
"string": "str"
}}
instead of what I expect:
{"list": [{
"test": {
"foo": "bar",
"inner": {"value": "aaaaa"}
},
"string": "str"
}]}
Activity
Kevin Conaway
made changes -
| Field | Original Value | New Value |
|---|---|---|
| Attachment | jettison-46.patch [ 35486 ] |
Dejan Bosanac
made changes -
| Assignee | Dan Diephouse [ dandiep ] | Dejan Bosanac [ dejanb ] |
| Status | Open [ 1 ] | Resolved [ 5 ] |
| Fix Version/s | 1.1 [ 13413 ] | |
| Resolution | Fixed [ 1 ] |
Attaching patch and test case