I regularly see errors like this one:
org.codehaus.jackson.map.exc.UnrecognizedPropertyException: Unrecognized field "help" (Class net.joelinn.asana.Error), not marked as ignorable
at [Source: sun.net.www.protocol.http.HttpURLConnection$HttpInputStream@4c314c07; line: 1, column: 73] (through reference chain: net.joelinn.asana.Error["help"])
I guess that this happens because the Asana API regularly adds new properties. This issue could easily be solved if Jackson is configured to ignore unknown properties.
I regularly see errors like this one:
I guess that this happens because the Asana API regularly adds new properties. This issue could easily be solved if Jackson is configured to ignore unknown properties.