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
Using FilePathsBase concat method * does not pass along S3Path config. So I've ended up coding the following:
using AWSS3: S3Path
function Base.:(*)(fp::S3Path, str::AbstractString)
S3Path(convert(String, fp) * str; config=fp.config)
end
Maybe there's a security reason I don't see that could justify not implementing this method?
I mean, we already have access to credentials in fp, so ...
Or is it just in line with #226?
e.g., the need to implement S3Path type-specific methods
Btw, using S3Path like a filesystem and not just a key-value store is sooo convenient.
Rgds,
The text was updated successfully, but these errors were encountered:
Hi,
Using
FilePathsBase
concat method*
does not pass alongS3Path
config. So I've ended up coding the following:Maybe there's a security reason I don't see that could justify not implementing this method?
I mean, we already have access to credentials in
fp
, so ...Or is it just in line with #226?
e.g., the need to implement S3Path type-specific methods
Btw, using
S3Path
like a filesystem and not just a key-value store is sooo convenient.Rgds,
The text was updated successfully, but these errors were encountered: