Reomve debugging loging statements from Azure tests

This commit removes some unneeded debugging logging statements from the
Azure storage tests.

Relates #44672
This commit is contained in:
Jason Tedor 2019-07-22 16:54:16 +09:00
parent a493a34143
commit d82a570a2a
No known key found for this signature in database
GPG Key ID: FA89F05560F16BC5

View File

@ -70,11 +70,9 @@ testClusters.integTest {
plugin file(project(':plugins:repository-azure').bundlePlugin.archiveFile)
keystore 'azure.client.integration_test.account', azureAccount
if (azureKey != null && azureKey.isEmpty() == false) {
logger.debug("Using access key in external service tests.")
keystore 'azure.client.integration_test.key', azureKey
}
if (azureSasToken != null && azureSasToken.isEmpty() == false) {
logger.debug("Using SAS token in external service tests.")
keystore 'azure.client.integration_test.sas_token', azureSasToken
}
@ -86,7 +84,5 @@ testClusters.integTest {
{ "ignored;DefaultEndpointsProtocol=http;BlobEndpoint=http://${azureStorageFixture.addressAndPort }" }, IGNORE_VALUE
String firstPartOfSeed = project.rootProject.testSeed.tokenize(':').get(0)
setting 'thread_pool.repository_azure.max', (Math.abs(Long.parseUnsignedLong(firstPartOfSeed, 16) % 10) + 1).toString(), System.getProperty('ignore.tests.seed') == null ? DEFAULT : IGNORE_VALUE
} else {
logger.debug("Using an external service to test the repository-azure plugin")
}
}