NPE 대응
This commit is contained in:
@@ -23,11 +23,10 @@ public class ObpGwMetricService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* UPSERT 판단을 위한 기존 데이터 조회
|
* UPSERT 판단을 위한 기존 데이터 조회 (NULL 안전)
|
||||||
*/
|
*/
|
||||||
public Optional<ObpGwMetric> findByUniqueKey(LocalDateTime timeslice, String apiId, String clientId, String hostname, String orgId) {
|
public Optional<ObpGwMetric> findByUniqueKey(LocalDateTime timeslice, String apiId, String clientId, String hostname, String orgId) {
|
||||||
return repository.findByTimesliceAndApiIdAndClientIdAndHostnameAndOrgId(
|
return repository.findByUniqueKeyNullSafe(timeslice, apiId, clientId, hostname, orgId);
|
||||||
timeslice, apiId, clientId, hostname, orgId);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user