You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a filename has a colon in it then it will fail to be transferred when get-requested as the split(':') command invoked when reading the object_name from the PathDetails will result in more than 2 parts. We can either
Exclude filenames with colons in them
Use a different separator for the object_name e.g. ':::'
Accept that it can be split into more than two parts and put some verification in on the bucket name extracted
(1) seems unnecessarily restrictive, (2) may require a migration for existing records, (3) is probably the best choice?
The text was updated successfully, but these errors were encountered:
If a filename has a colon in it then it will fail to be transferred when get-requested as the
split(':')
command invoked when reading theobject_name
from thePathDetails
will result in more than 2 parts. We can eitherobject_name
e.g. ':::'(1) seems unnecessarily restrictive, (2) may require a migration for existing records, (3) is probably the best choice?
The text was updated successfully, but these errors were encountered: