From c9bed7835daf752000999487f2186b2384f30f50 Mon Sep 17 00:00:00 2001 From: Tomasz Date: Wed, 19 Apr 2023 12:23:05 +0200 Subject: [PATCH] Poprawka loginu do bazy --- IUM_07/mongo_observer.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/IUM_07/mongo_observer.py b/IUM_07/mongo_observer.py index e07bdc4..27606ed 100644 --- a/IUM_07/mongo_observer.py +++ b/IUM_07/mongo_observer.py @@ -4,8 +4,10 @@ import random import time ex = Experiment("sacred_scopes", interactive=True) -ex.observers.append(MongoObserver(url='mongodb://mongo_user:mongo_password@localhost:27017', - db_name='sacred')) # Tutaj podajemy dane uwierzytelniające i nazwę bazy skonfigurowane w pliku .env podczas uruchamiania bazy. + +ex.observers.append(MongoObserver(url='mongodb://admin:IUM_2021@172.17.0.1:27017', db_name='sacred')) +#ex.observers.append(MongoObserver(url='mongodb://mongo_user:mongo_password@localhost:27017', + # db_name='sacred')) # Tutaj podajemy dane uwierzytelniające i nazwę bazy skonfigurowane w pliku .env podczas uruchamiania bazy. # W przypadku instancji na Jenkinsie url będzie wyglądał następująco: mongodb://mongo_user:mongo_password_IUM_2021@localhost:27017 @ex.config def my_config():