YARN-10438. Handle null containerId in ClientRMService#getContainerReport() (#2313)
Co-authored-by: Shubham Gupta <gshubham@microsoft.com>
(cherry picked from commit e3cd627069
)
This commit is contained in:
parent
68ac742d94
commit
484cac36fd
|
@ -479,6 +479,9 @@ public class ClientRMService extends AbstractService implements
|
||||||
public GetContainerReportResponse getContainerReport(
|
public GetContainerReportResponse getContainerReport(
|
||||||
GetContainerReportRequest request) throws YarnException, IOException {
|
GetContainerReportRequest request) throws YarnException, IOException {
|
||||||
ContainerId containerId = request.getContainerId();
|
ContainerId containerId = request.getContainerId();
|
||||||
|
if (containerId == null) {
|
||||||
|
throw new ContainerNotFoundException("Invalid container id: null");
|
||||||
|
}
|
||||||
ApplicationAttemptId appAttemptId = containerId.getApplicationAttemptId();
|
ApplicationAttemptId appAttemptId = containerId.getApplicationAttemptId();
|
||||||
ApplicationId appId = appAttemptId.getApplicationId();
|
ApplicationId appId = appAttemptId.getApplicationId();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue