changed keyring key of mongodb data to OpenPype/mongodb

This commit is contained in:
iLLiCiTiT 2021-04-08 17:15:26 +02:00
parent 787d037ca0
commit 261e1db2c0
3 changed files with 3 additions and 3 deletions

View file

@ -242,7 +242,7 @@ class BootstrapRepos:
self._app = "openpype"
self._log = log.getLogger(str(__class__))
self.data_dir = Path(user_data_dir(self._app, self._vendor))
self.secure_registry = OpenPypeSecureRegistry("Settings")
self.secure_registry = OpenPypeSecureRegistry("mongodb")
self.registry = OpenPypeSettingsRegistry()
self.zip_filter = [".pyc", "__pycache__"]
self.openpype_filter = [

View file

@ -42,7 +42,7 @@ class InstallDialog(QtWidgets.QDialog):
def __init__(self, parent=None):
super(InstallDialog, self).__init__(parent)
self.secure_registry = OpenPypeSecureRegistry("Settings")
self.secure_registry = OpenPypeSecureRegistry("mongodb")
self.mongo_url = ""
try:

View file

@ -532,5 +532,5 @@ def change_openpype_mongo_url(new_mongo_url):
"""
validate_mongo_connection(new_mongo_url)
registry = OpenPypeSecureRegistry("Settings")
registry = OpenPypeSecureRegistry("mongodb")
registry.set_item("openPypeMongo", new_mongo_url)