-
Notifications
You must be signed in to change notification settings - Fork 91
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
Use createJsGraphBuilderFactoryFromConfig function from FrameworkUtils #147
Use createJsGraphBuilderFactoryFromConfig function from FrameworkUtils #147
Conversation
…anged in latest version.
…ilderFactory function.
@@ -58,6 +59,7 @@ protected void setUp() throws Exception { | |||
|
|||
super.setUp(); | |||
|
|||
CarbonConstants.ENABLE_LEGACY_AUTHZ_RUNTIME = true; |
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.
what is the usecase behind this?
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 is used in the pre test set ups. However there is no default value provided for this in CarbonConstants. Therefore this gives a NullPointerException when tests are run. Therefore the value was initialised here before tests run.
@@ -104,6 +104,19 @@ | |||
<artifactId>nashorn-core</artifactId> | |||
<scope>provided</scope> | |||
</dependency> | |||
<dependency> | |||
<groupId>org.wso2.orbit.com.nimbusds</groupId> | |||
<artifactId>nimbus-jose-jwt</artifactId> |
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.
why are we adding these new dependencies/
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.
There were build issues due to this dependency not being present. There are multiple usages of this in the codebase however the dependency was missing. Therefore there were compilation issues.
components/org.wso2.carbon.identity.conditional.auth.functions.analytics/pom.xml
Outdated
Show resolved
Hide resolved
We have to trigger the PR builder before merging the PR |
PR builder started |
PR builder completed |
My bad. Will trigger a pr build for the version bump to test. |
Purpose
Related Issue