-
Notifications
You must be signed in to change notification settings - Fork 152
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Status hbm references non existent status column from SysLog #220
Comments
jpos#220 Status hbm references non existent status column from SysLog
This is on purpose. Originally, SysLog would have a column associated with the Revision History, and Status, and, and, and, but that doesn't scale well, so we've removed that relationship. Status could have an info-only SysLog id, suitable for most situations (without database integrity, though). |
Sorry I don't know if I follow, problem is this generates a runtime error when accessing the events properties since it tries to execute an invalid SQL (status column does not exists) my proposal is either remove that relationship from the hbm or modify it by |
With the modification proposed in #221 it works ok, it will create a |
the line that fails is StatusManager.java#L11 when max events is not 0 |
status
column does not exist inSysLog
entity. So accessing theevents
property creates an invalid SQL sentence. Maybe it should point tosource
?jPOS-EE/modules/status/src/main/resources/org/jpos/ee/status/Status.hbm.xml
Lines 41 to 45 in 0756f3a
The text was updated successfully, but these errors were encountered: