-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add search option #131
Add search option #131
Conversation
Hope my fix helps |
Unfortunately that did not fix the issue. The error happens on line 139 in |
can you give me some test credentials? so i could test on my end |
Not really sure. I have simple aws root account with 2 random buckets, eu-central-1 region, everything default, few text files in the buckets. I think the issue is with the |
Can you change the original marker value to None and check? |
So if not marker:
response = s3_client.list_objects_v2(Bucket=bucket_name,
Prefix=path,
Delimiter="/",
)
else:
response = s3_client.list_objects_v2(Bucket=bucket_name,
Prefix=path,
Delimiter="/",
ContinuationToken=marker) worked for me. However, when I submit the search I get the same error again. The same issue probably. |
Please mention this new feature also in the README |
Now it fails again on view bucket. The error is on the newly added line that converts list of dicts to set and to list again. Dict is unhashable. Please test the changes before push. |
still an error on view bucket...
|
Co-authored-by: Roman Zydyk <31843161+romanzdk@users.noreply.github.com>
No description provided.