EricGao888 commented on code in PR #10303:
URL: https://github.com/apache/dolphinscheduler/pull/10303#discussion_r885150837


##########
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ResourcesServiceImpl.java:
##########
@@ -651,7 +666,14 @@ private boolean upload(User loginUser, String fullName, 
MultipartFile file, Reso
             return false;
         }
         // query tenant
-        String tenantCode = 
tenantMapper.queryById(loginUser.getTenantId()).getTenantCode();
+        Tenant tenant = tenantMapper.queryById(loginUser.getTenantId());
+        // this could happen when user logs in as admin
+        if (tenant == null) {
+            logger.error("fail to acquire tenant, please set tenant for login 
user/admin first");

Review Comment:
   @SbloodyS Just for double-check, I've already put some instructions and 
users will get it on Web UI once triggered. Where else exactly should I put the 
message you mentioned above?
   
   
![image](https://user-images.githubusercontent.com/34905992/171079333-798daa59-434c-4aee-8ced-17f97c4b29e7.png)
   



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to