-
Notifications
You must be signed in to change notification settings - Fork 78
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
Delete user schemas from user schemas database only #416
Conversation
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME | |||
distributionPath=wrapper/dists | |||
zipStoreBase=GRADLE_USER_HOME | |||
zipStorePath=wrapper/dists | |||
distributionUrl=https\://services.gradle.org/distributions/gradle-3.1-bin.zip | |||
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-bin.zip |
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.
Did you mean to update this? If so, I would do it via a separate PR with an explanation of why it's being updated.
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.
com.github.jk1.dependency-license-report" version "1.3" requires at least grade version 3.3
As discussed, upgraded to gradle wrapper version 4.10.2
if (project.hasProperty("database")) { | ||
println "Connecting via the App-Services port to database: " + project.property("database") | ||
return getAppConfig().newAppServicesDatabaseClient(project.property("database")) | ||
} | ||
else if (database != null){ |
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 this should come first - if a client passes in a non-null value, use that. Else, check for the project property. Else, call newDatabaseClient.
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.
cabc11f changes the proirity of task property.
Fixes https://github.com/marklogic/datahub-central/issues/726