feature: added multiply proxy storage support (#1465)
This commit is contained in:
parent
b2af2e46ac
commit
0c9fd4aef4
1 changed files with 2 additions and 2 deletions
|
@ -200,9 +200,9 @@ QStringList GatewayController::getProxyUrls()
|
|||
|
||||
QStringList proxyStorageUrl;
|
||||
if (m_isDevEnvironment) {
|
||||
proxyStorageUrl = QStringList { DEV_S3_ENDPOINT };
|
||||
proxyStorageUrl = QString(DEV_S3_ENDPOINT).split(", ");
|
||||
} else {
|
||||
proxyStorageUrl = QStringList { PROD_S3_ENDPOINT };
|
||||
proxyStorageUrl = QString(PROD_S3_ENDPOINT).split(", ");
|
||||
}
|
||||
|
||||
QByteArray key = m_isDevEnvironment ? DEV_AGW_PUBLIC_KEY : PROD_AGW_PUBLIC_KEY;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue