Skip to content

Commit

Permalink
Fixed MID-3724: Shadow details page: QueryException (type mistmatch?)
Browse files Browse the repository at this point in the history
  • Loading branch information
mederly committed Feb 3, 2017
1 parent 0996754 commit 8fbc49e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -1010,7 +1010,7 @@ private ObjectQuery createObjectQuery() {
q = q.item(ShadowType.F_KIND).eq(kind).and();
}
if (StringUtils.isNotEmpty(intent)) {
q = q.item(ShadowType.F_INTENT).eq(kind).and();
q = q.item(ShadowType.F_INTENT).eq(intent).and();
}
if (failedOperatonType != null){
q = q.item(ShadowType.F_FAILED_OPERATION_TYPE).eq(failedOperatonType).and();
Expand Down

0 comments on commit 8fbc49e

Please sign in to comment.