You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Next issue after #446 is fixed: When I want to look at one of the reported bugs, I get an error 500 with the following stack trace:
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'bugView' defined in file [/application/BOOT-INF/classes/com/faendir/acra/ui/view/bug/BugView.class]: Failed to instantiate [com.faendir.acra.ui.view.bug.BugView]: Constructor threw exception
[...]
at com.faendir.acra.ui.component.grid.LayoutPersistingFilterableGrid$addOnClickNavigation$1$1.invoke(LayoutPersistingFilterableGrid.kt:76) ~[classes/:2.0.0-beta04]
[...]
Caused by: java.lang.IllegalArgumentException: Failed to evaluate expression 'returnObject == null || hasViewPermission(returnObject.appId)'
[...]
at com.faendir.acra.persistence.bug.BugRepository$$SpringCGLIB$$0.find-VSoB3VY(<generated>) ~[classes/:2.0.0-beta04]
at com.faendir.acra.ui.view.bug.BugView.<init>(BugView.kt:46) ~[classes/:2.0.0-beta04]
[...]
Caused by: org.springframework.expression.spel.SpelEvaluationException: EL1008E: Property or field 'appId' cannot be found on object of type 'com.faendir.acra.persistence.bug.Bug' - maybe not public or not valid?
[...]
The text was updated successfully, but these errors were encountered:
Okay so in a past release method security wasn't working at all. It seems now it is active but not updated for current usage patterns so I guess I gotta make a bigger check
I found a great testing library (https://github.com/mvysny/karibu-testing) to replace vaadin testbench (which I had to remove in the past because I did not have access to a license anymore).
Implementing tests for all pages will take a while, but the specific issues mentioned here are tested and fixed now.
Next issue after #446 is fixed: When I want to look at one of the reported bugs, I get an error 500 with the following stack trace:
The text was updated successfully, but these errors were encountered: