diff --git a/README.md b/README.md index e30b1f3..bbd582d 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,10 @@ It aims to enable data owners and data scientists to: * The DCR will be automatically created with a data schema corresponding to the selected cohorts, generated from the metadata provided by the data owners. * The data scientist can then access their DCR in Decentriq, write the code for their analysis, and request computation of this code on the provisioned cohorts. +> [!WARNING] +> +> If you logged in with a Decentriq user that does not have access to the Cohort Explorer, and need to re-login with another user: you will need to clear cache and cookies. Because Auth0 will keep your login in mind for some time, and it can be quite tricky to reset (they don't give the tools for managing that properly). + ## 🗺️ Technical overview This platform is composed of 3 main components: diff --git a/backend/src/decentriq.py b/backend/src/decentriq.py index 231dd57..6fc070f 100644 --- a/backend/src/decentriq.py +++ b/backend/src/decentriq.py @@ -49,7 +49,8 @@ def create_provision_dcr(user: Any, cohort: Cohort) -> dict[str, Any]: builder = ( AnalyticsDcrBuilder(client=client) .with_name(dcr_title) - .with_owner(user["email"]) + # .with_owner(user["email"]) + .with_owner(settings.decentriq_email) .with_description(f"A data clean room to provision the data for the {cohort.cohort_id} cohort") )