-
Notifications
You must be signed in to change notification settings - Fork 304
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
PAYARA-1486 Changed the roomName attribute to be roomID #1410
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -84,7 +84,7 @@ public class XmppNotificationConfigurer extends BaseNotificationConfigurer<XmppN | |
@Param(name = "securityDisabled", defaultValue = "false", optional = true) | ||
private Boolean securityDisabled; | ||
|
||
@Param(name = "roomName") | ||
@Param(name = "roomID") | ||
private String roomName; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bleurgh! Refactoring just the parameter name isn't very nice! 😝 A quick grep (and off the top of my head) you'll need to refactor all occurrences of roomName to roomID:
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ah, I thought I could get away with just renaming the bits the user could see >.< |
||
|
||
protected void applyValues(XmppNotifierConfiguration configuration) throws PropertyVetoException { | ||
|
@@ -124,4 +124,4 @@ protected String getHealthCheckNotifierCommandName() { | |
protected String getRequestTracingNotifierCommandName() { | ||
return "requesttracing-xmpp-notifier-configure"; | ||
} | ||
} | ||
} |
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.
This won't work - The property name is separate to the parameter name. See the following comment...