Hi all, I have encountered this strange gfsh behavior There is data in a region and I can query it
gfsh>query --query='select key from /Region.entries where key=28733' Result : true Limit : 100 Rows : 1 Result ------ 28733 But when I try to get or remove the entry gfsh>get --region=Region --key='28733' Result : false Key Class : java.lang.String Key : 28733 Value Class : java.lang.String Value : null gfsh>remove --region=Region --key='28733' Result : false Message : Key is not present in the region Key Class : java.lang.String Key : 28733 But then gfsh>query --query='select key from /Region.entries where key=28733' Result : true Limit : 100 Rows : 1 Result ------ 28733 Iām a bit stumped š Claudiu