Sergey Gotliv has posted comments on this change.

Change subject: backend,frontend: add more specific glance errors
......................................................................


Patch Set 1:

(2 comments)

1. We usually add messages to 3 AppError.properties files.
2. I added Cheryn to review messages

....................................................
File 
backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/ImportRepoImageCommand.java
Line 200:             }
Line 201:         }
Line 202: 
Line 203:         if (diskImage == null) {
Line 204:             return 
failCanDoAction(VdcBllMessages.ACTION_TYPE_FAILED_DISK_NOT_EXIST);
Sorry, this is not related to patch.
DiskImage can't be null, I mean according to the code getDiskImage() can't 
return null.
Line 205:         }
Line 206: 
Line 207:         return true;
Line 208:     }


....................................................
File 
backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/provider/OpenStackImageException.java
Line 13: 
Line 14:     public OpenStackImageException(ErrorType errorType) {
Line 15:         this.errorType = errorType;
Line 16:     }
Line 17: 
You always create this exception with message. So this constructor is not used,
more than that you are using e.getMessage() in the command...
Line 18:     public OpenStackImageException(ErrorType errorType, String 
message) {
Line 19:         super(message);
Line 20:         this.errorType = errorType;
Line 21:     }


-- 
To view, visit http://gerrit.ovirt.org/19370
To unsubscribe, visit http://gerrit.ovirt.org/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Iecba90adfc2be50fb1471ac93908fde176696404
Gerrit-PatchSet: 1
Gerrit-Project: ovirt-engine
Gerrit-Branch: master
Gerrit-Owner: Federico Simoncelli <[email protected]>
Gerrit-Reviewer: Allon Mureinik <[email protected]>
Gerrit-Reviewer: Cheryn Tan <[email protected]>
Gerrit-Reviewer: Daniel Erez <[email protected]>
Gerrit-Reviewer: Federico Simoncelli <[email protected]>
Gerrit-Reviewer: Sergey Gotliv <[email protected]>
Gerrit-Reviewer: oVirt Jenkins CI Server
Gerrit-HasComments: Yes
_______________________________________________
Engine-patches mailing list
[email protected]
http://lists.ovirt.org/mailman/listinfo/engine-patches

Reply via email to