-
Notifications
You must be signed in to change notification settings - Fork 145
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
Rest endpoint for Remote Server Logging #485
Conversation
*/ | ||
public RemoteLoggingConfigService getRemoteLoggingConfigService() { | ||
|
||
return ConfigsServiceHolder.getInstance().remoteLoggingConfigService; |
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.
shouldn't this be this.remoteLoggingConfigService
?
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.
I think both are fine, but the suggestion is more appropriate.
...nfigs.common/src/main/java/org/wso2/carbon/identity/api/server/configs/common/Constants.java
Outdated
Show resolved
Hide resolved
.../wso2/carbon/identity/api/server/configs/common/factory/RemoteLoggingOGSiServiceFactory.java
Outdated
Show resolved
Hide resolved
4f6f43a
to
f17b1dd
Compare
*/ | ||
public void setRemoteLoggingConfigService(RemoteLoggingConfigService remoteLoggingConfigService) { | ||
|
||
ConfigsServiceHolder.getInstance().remoteLoggingConfigService = remoteLoggingConfigService; |
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.
ConfigsServiceHolder.getInstance().remoteLoggingConfigService = remoteLoggingConfigService; | |
this.remoteLoggingConfigService = remoteLoggingConfigService; |
PR builder started |
PR builder completed |
96d2229
to
51920d6
Compare
PR builder started |
PR builder completed |
PR builder started |
PR builder completed |
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.
Approving the pull request based on the successful pr build https://github.com/wso2/product-is/actions/runs/6104800783
Purpose
Fixes wso2/product-is#16588
Prerequestie