minio
Some checks are pending
Backend CI / test (push) Waiting to run
Backend CI / build (push) Blocked by required conditions
Deploy Mnemo Cards / Deploy Backend (push) Waiting to run
Deploy Mnemo Cards / Deploy Web App (push) Blocked by required conditions
Deploy Mnemo Cards / Final Verification (push) Blocked by required conditions
Some checks are pending
Backend CI / test (push) Waiting to run
Backend CI / build (push) Blocked by required conditions
Deploy Mnemo Cards / Deploy Backend (push) Waiting to run
Deploy Mnemo Cards / Deploy Web App (push) Blocked by required conditions
Deploy Mnemo Cards / Final Verification (push) Blocked by required conditions
This commit is contained in:
parent
4793421b71
commit
ac4e0919cf
1 changed files with 8 additions and 0 deletions
|
|
@ -20,6 +20,7 @@ class MinioService {
|
||||||
secretKey: _config.secretKey,
|
secretKey: _config.secretKey,
|
||||||
useSSL: _config.useSSL,
|
useSSL: _config.useSSL,
|
||||||
region: _config.region,
|
region: _config.region,
|
||||||
|
enableTrace: true,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -30,6 +31,13 @@ class MinioService {
|
||||||
MinioConfig.testImagesBucket,
|
MinioConfig.testImagesBucket,
|
||||||
MinioConfig.voiceAudioBucket,
|
MinioConfig.voiceAudioBucket,
|
||||||
];
|
];
|
||||||
|
print('Config endpoint: ${_config.endpoint}');
|
||||||
|
print('Config port: ${_config.port}');
|
||||||
|
print('Config accessKey: ${_config.accessKey}');
|
||||||
|
print('Config secretKey: ${_config.secretKey}');
|
||||||
|
print('Config useSSL: ${_config.useSSL}');
|
||||||
|
print('Config region: ${_config.region}');
|
||||||
|
|
||||||
|
|
||||||
for (final bucket in buckets) {
|
for (final bucket in buckets) {
|
||||||
try {
|
try {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue