Re: Need confirmation about Failed Uploading Cases (500)
Posted: April 3rd, 2019, 8:22 pm
Looking at the code a bit I think I have workaround for you. Open the file csweb/src/api/app/swagger.json in a text editor. On line 1025 you will find:
Remove the line that starts with "format". You would end up with:
I'm still not sure why you are getting errors reading the dates but this change will remove the date check altogether and should hopefully prevent that error.
Code: Select all
"modifiedTime": {
"type": "string",
"description": "Modified time in RFC3339 format ( e.g. 1985-04-12T23:20:50.52Z)",
"format": "date-time"
},Code: Select all
"modifiedTime": {
"type": "string",
"description": "Modified time in RFC3339 format ( e.g. 1985-04-12T23:20:50.52Z)"
},