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 has been archived by the owner on Jul 19, 2024. It is now read-only.
Which service(blob, file, queue, table) does this issue concern?
table
Which version of the SDK was used?
8.6.5
What problem was encountered?
Unable to iterate over a set of results.
Following is the exception:
Caused by: java.util.NoSuchElementException: An error occurred while enumerating the result, check the original exception for details.
at com.microsoft.azure.storage.core.LazySegmentedIterator.hasNext(LazySegmentedIterator.java:113)
The code was something like this:
Iterable<PEntity> results = (Iterable<PEntity>)
this.TableStore.queryByKey(PEntity.class,
ROW_KEY, ID);
for (PEntity tableEntity : results) { // From here it raised exception
partitions.add(tableEntity.getKey());
}
The exception occured in For loop
Have you found a mitigation/solution?
No.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Which service(blob, file, queue, table) does this issue concern?
table
Which version of the SDK was used?
8.6.5
What problem was encountered?
Unable to iterate over a set of results.
Following is the exception:
Caused by: java.util.NoSuchElementException: An error occurred while enumerating the result, check the original exception for details.
at com.microsoft.azure.storage.core.LazySegmentedIterator.hasNext(LazySegmentedIterator.java:113)
Have you found a mitigation/solution?
No.
The text was updated successfully, but these errors were encountered: