|
@@ -47,8 +47,8 @@ public class RecallService implements ApplicationContextAware {
|
|
|
|
|
|
public RecallResult recall(RecallParam param) {
|
|
|
List<RecallStrategy> strategies = getRecallStrategy(param);
|
|
|
-// log.info("recall strategies {}", JSONUtils.toJson(CommonCollectionUtils.toList(strategies,
|
|
|
-// o -> o.getClass().getSimpleName())));
|
|
|
+ log.info("recall strategies {}", JSONUtils.toJson(CommonCollectionUtils.toList(strategies,
|
|
|
+ o -> o.getClass().getSimpleName())));
|
|
|
CountDownLatch cdl = new CountDownLatch(strategies.size());
|
|
|
List<Future<RecallResult.RecallData>> recallResultFutures = new ArrayList<>();
|
|
|
for (final RecallStrategy strategy : strategies) {
|
|
@@ -110,7 +110,7 @@ public class RecallService implements ApplicationContextAware {
|
|
|
strategies.add(strategyMap.get(ReturnVideoRecallStrategy.class.getSimpleName()));
|
|
|
|
|
|
Set<String> abExpCodes = param.getAbExpCodes();
|
|
|
- if(CollectionUtils.isNotEmpty(abExpCodes)) {
|
|
|
+ if (CollectionUtils.isNotEmpty(abExpCodes)) {
|
|
|
if (abExpCodes.contains("563")
|
|
|
|| abExpCodes.contains("567")) {
|
|
|
strategies.add(strategyMap.get(SceneCFRovnRecallStrategy.class.getSimpleName()));
|