-
Notifications
You must be signed in to change notification settings - Fork 81
Only show existing columns in message storage views #8676
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
Only show existing columns in message storage views #8676
Conversation
…lumns-in-messagestore-when-using-jdbctablelistener # Conflicts: # console/backend/src/main/java/org/frankframework/console/controllers/TransactionalStorage.java
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot reviewed 14 out of 19 changed files in this pull request and generated no comments.
Files not reviewed (5)
- console/frontend/src/main/frontend/src/app/views/storage/storage-view/storage-view.component.html: Language not supported
- console/frontend/src/main/frontend/src/app/views/storage/storage-view/storage-view.component.scss: Language not supported
- core/src/test/resources/Management/MessageBrowserFindAll.json: Language not supported
- core/src/test/resources/Management/MessageBrowserFindNone.json: Language not supported
- core/src/test/resources/Management/MessageBrowserFindOne.json: Language not supported
Comments suppressed due to low confidence (1)
messaging/src/main/java/org/frankframework/jms/AbstractJmsMessageBrowser.java:227
- The use of 'null' as the fieldName may be confusing especially if it is used in filtering or matching logic later. Consider using a concrete identifier or adding a comment to clarify the intent.
new MessageBrowserField(null, "id", "Storage ID", "string"),
…lumns-in-messagestore-when-using-jdbctablelistener
request.setHeader(BusMessageUtils.HEADER_CONFIGURATION_NAME_KEY, getConfiguration().getName()); | ||
request.setHeader(BusMessageUtils.HEADER_ADAPTER_NAME_KEY, adapter.getName()); | ||
try { | ||
callSyncGateway(request); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
als je hier een exceptie verwacht moet je assertThrows gebruiken, als je hier nu geen exceptie krijgt gaat de test nog steeds goed.
new MessageBrowserField(getExpiryDateField(), "expiryDate", "Expires", "date"), | ||
new MessageBrowserField(getCommentField(), "comment", "Comment", "string"), | ||
new MessageBrowserField(getLabelField(), "label", "Label", "string") | ||
).filter(field -> field.fieldName() != null).toList(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dat is een handige oplossing!
…showing-not-existing-columns-in-messagestore-when-using-jdbctablelistener
|
No description provided.