|
@@ -162,6 +162,10 @@ public class PidLambdaContainer {
|
|
}
|
|
}
|
|
|
|
|
|
public static Double getPidLambda(Long creativeId){
|
|
public static Double getPidLambda(Long creativeId){
|
|
- return lambdaCache.getOrDefault(creativeId,1d);
|
|
|
|
|
|
+ try {
|
|
|
|
+ return lambdaCache.getOrDefault(creativeId,1d);
|
|
|
|
+ }catch (Exception e){
|
|
|
|
+ return 1d;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|