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
Note the comment: the code currently checks in a for loop if the property's name is present in the cache HashMap, and breaks the loop if it isn't. This means passing &properties=valid,valid,invalid,valid as parameter in the query would return only the first two valid properties, and ignore the last one silently. This is not a good behavior, because the user expects 4 properties, and is not getting informed why only gets 2.
The text was updated successfully, but these errors were encountered:
The logiclayer endpoint parsing happens with this logic. Specifically, the
properties
parsing happens in this fragment.Note the comment: the code currently checks in a
for
loop if the property's name is present in the cache HashMap, and breaks the loop if it isn't. This means passing&properties=valid,valid,invalid,valid
as parameter in the query would return only the first two valid properties, and ignore the last one silently. This is not a good behavior, because the user expects 4 properties, and is not getting informed why only gets 2.The text was updated successfully, but these errors were encountered: