Fixed circular import error occurring while deploying cloud PostgreSQL instance from pgAdmin. #6840

Update AWS, Google Cloud lib version.
This commit is contained in:
Yogesh Mahajan 2023-10-31 14:07:34 +05:30 committed by GitHub
parent e30d2eca90
commit a8a7574e69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 4 deletions

View File

@ -48,8 +48,8 @@ urllib3==1.26.*
azure-mgmt-rdbms==10.1.0
azure-mgmt-resource==23.0.1
azure-mgmt-subscription==3.1.1
azure-identity==1.13.0
azure-identity==1.15.0
google-api-python-client==2.*
google-auth-oauthlib==1.0.0
google-auth-oauthlib==1.1.0
Werkzeug==2.2.3
keyring==23.*

View File

@ -24,7 +24,7 @@ import sys
CURRENT_PATH = os.path.dirname(os.path.realpath(__file__))
root = os.path.dirname(os.path.dirname(CURRENT_PATH))
sys.path.insert(0, root)
from pgadmin.misc.cloud.azure.azure_cache import load_persistent_cache, \
from utils.azure_cache import load_persistent_cache, \
TokenCachePersistenceOptions

View File

@ -19,7 +19,8 @@ import json
from flask import session, current_app, request
from flask_login import current_user
from config import root
from .azure_cache import load_persistent_cache, TokenCachePersistenceOptions
from pgacloud.utils.azure_cache import load_persistent_cache, \
TokenCachePersistenceOptions
import os