mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed circular import error occurring while deploying cloud PostgreSQL instance from pgAdmin. #6840
Update AWS, Google Cloud lib version.
This commit is contained in:
parent
e30d2eca90
commit
a8a7574e69
@ -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.*
|
||||
|
@ -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
|
||||
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user