Object count mismatch #1331
-
I don't understand why if I've put 6 objects, I'm only seeing 5 from |
Beta Was this translation helpful? Give feedback.
Answered by
sighingnow
Apr 22, 2023
Replies: 1 comment
-
To remove the limit, you can |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
PaulRudin
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
client.list_objects()
has a default argumentlimit: int = 5
so you see only 5 objects.To remove the limit, you can
c.list_objects("*", limit=-1)
.