File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/main/java/org/socialsignin/spring/data/dynamodb/repository/support Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 20
20
import java .util .HashMap ;
21
21
import java .util .List ;
22
22
import java .util .Map ;
23
+ import java .util .Map .Entry ;
23
24
24
25
import org .socialsignin .spring .data .dynamodb .core .DynamoDBOperations ;
25
26
import org .socialsignin .spring .data .dynamodb .repository .DynamoDBCrudRepository ;
@@ -91,7 +92,7 @@ public List<T> findAll(Iterable<ID> ids) {
91
92
}
92
93
}
93
94
keyPairsMap .put (domainType , keyPairs );
94
- return (List <T >) dynamoDBOperations .batchLoad (keyPairsMap ).get (domainType );
95
+ return (List <T >) dynamoDBOperations .batchLoad (keyPairsMap ).get (dynamoDBOperations . getOverriddenTableName ( entityInformation . getDynamoDBTableName ()) );
95
96
}
96
97
97
98
protected T load (ID id ) {
You can’t perform that action at this time.
0 commit comments