You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-01 06:46:55 +03:00
add verbose optio in testS3Connection
This commit is contained in:
committed by
Leonid Fedorov
parent
780e34680f
commit
dcdfb9d018
@ -112,7 +112,7 @@ S3Storage::ScopedConnection::~ScopedConnection()
|
||||
s3->returnConnection(conn);
|
||||
}
|
||||
|
||||
S3Storage::S3Storage(bool skipRetry) : skipRetryableErrors(skipRetry)
|
||||
S3Storage::S3Storage(bool skipRetry, bool verbose) : skipRetryableErrors(skipRetry), verbose_enabled(verbose)
|
||||
{
|
||||
/* Check creds from envvars
|
||||
Get necessary vars from config
|
||||
@ -225,7 +225,7 @@ S3Storage::S3Storage(bool skipRetry) : skipRetryableErrors(skipRetry)
|
||||
}
|
||||
|
||||
ms3_library_init();
|
||||
if (libs3_debug == "enabled")
|
||||
if (verbose_enabled || libs3_debug == "enabled")
|
||||
{
|
||||
ms3_debug(1);
|
||||
}
|
||||
|
Reference in New Issue
Block a user