possible cause two files in a bunch upload with the same destination filename ?
Version: master
Severity: normal
possible cause two files in a bunch upload with the same destination filename ?
Version: master
Severity: normal
Status | Subtype | Assigned | Task | ||
---|---|---|---|---|---|
Open | None | T85568 Uploadstash errors (tracking) | |||
Invalid | matmarex | T42189 api-error-internal_api_error_UploadStashBadPathException |
I can't find even a single instance of this in error logs. Whatever it was, it's not a problem anymore.
select left(timestamp,8), count(*) from UploadWizardErrorFlowEvent_11772725 where event_code = 'internal_api_error_UploadStashBadPathException' group by left(timestamp,8); Empty set (0.21 sec) select left(timestamp,8), count(*) from UploadWizardErrorFlowEvent_9924376 where event_code = 'internal_api_error_UploadStashBadPathException' group by left(timestamp,8); Empty set (0.88 sec)
The query above should be fine, since this returns plenty of results:
select left(timestamp,8), count(*) from UploadWizardErrorFlowEvent_11772725 where event_code like 'internal_api_error_%' group by left(timestamp,8);