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
4e77f772fc
commit
c44f109860
@ -509,6 +509,9 @@ public GetApplicationAttemptsResponse getApplicationAttempts(
|
||||
public GetContainerReportResponse getContainerReport(
|
||||
GetContainerReportRequest request) throws YarnException, IOException {
|
||||
ContainerId containerId = request.getContainerId();
|
||||
if (containerId == null) {
|
||||
throw new ContainerNotFoundException("Invalid container id: null");
|
||||
}
|
||||
ApplicationAttemptId appAttemptId = containerId.getApplicationAttemptId();
|
||||
ApplicationId appId = appAttemptId.getApplicationId();
|
||||
UserGroupInformation callerUGI = getCallerUgi(appId,
|
||||
|
Loading…
Reference in New Issue
Block a user