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
{{ message }}
This repository was archived by the owner on Jul 19, 2024. It is now read-only.
and counter is starting from 0. On 11th I had an error (with number of 10 counting from 0). Based on the documentation I see that all ids should have the same length and each base64BlockId for 0 and 10 has exactly the same length, but before encoding of course the length is bigger for 10 than for 0. And as a result I can commit only less than 11 stages. Can you please point out a problem ?
This is my code snippet:
String base64BlockId = Base64.getEncoder().encodeToString(String.valueOf(counter).getBytes());
blockBlobClient.stageBlock(base64BlockId, new ByteArrayInputStream(bytes), bytes.length);
I tried with id pattern like 001 but then I received this error on a first stageBlock call.