From 8bc896a57ca9b3efbc8569b577de179630b91435 Mon Sep 17 00:00:00 2001 From: Ash Manda Date: Thu, 17 Sep 2026 16:37:29 -0400 Subject: [PATCH 1/4] Add feature flag for locally fair data in tests --- .github/workflows/container_integration_tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/container_integration_tests.yml b/.github/workflows/container_integration_tests.yml index a9f2239f55d..2d9bc0a571c 100644 --- a/.github/workflows/container_integration_tests.yml +++ b/.github/workflows/container_integration_tests.yml @@ -106,7 +106,8 @@ jobs: mvn -Pct docker:start \ -Ddataverse.feature.index-harvested-metadata-source=true \ -Ddataverse.oai.server.maxidentifiers=2 \ - -Ddataverse.oai.server.maxrecords=2 + -Ddataverse.oai.server.maxrecords=2 \ + -Ddataverse.feature.allow-locally-fair-data=true # --------------------------- # WAIT FOR API READINESS From 2036a048aeb13aceed1279aa40556ecf9d7b2cb1 Mon Sep 17 00:00:00 2001 From: Ash Manda Date: Thu, 17 Sep 2026 16:37:56 -0400 Subject: [PATCH 2/4] Add feature flag for locally fair data in workflow --- .github/workflows/dataverse_jsf_tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dataverse_jsf_tests.yml b/.github/workflows/dataverse_jsf_tests.yml index 8f81460de23..8309251aeca 100644 --- a/.github/workflows/dataverse_jsf_tests.yml +++ b/.github/workflows/dataverse_jsf_tests.yml @@ -103,7 +103,8 @@ jobs: mvn -Pct docker:start \ -Ddataverse.feature.index-harvested-metadata-source=true \ -Ddataverse.oai.server.maxidentifiers=2 \ - -Ddataverse.oai.server.maxrecords=2 + -Ddataverse.oai.server.maxrecords=2 \ + -Ddataverse.feature.allow-locally-fair-data=true # --------------------------- # WAIT FOR API READINESS From ac440ea94cf6ed1edb423ff718fe3840ad01533b Mon Sep 17 00:00:00 2001 From: Ash Manda Date: Thu, 17 Sep 2026 16:48:36 -0400 Subject: [PATCH 3/4] Enable LOCALLY_FAIR in dataverse_jsf_tests workflow --- .github/workflows/dataverse_jsf_tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/dataverse_jsf_tests.yml b/.github/workflows/dataverse_jsf_tests.yml index 8309251aeca..5a659c5b52e 100644 --- a/.github/workflows/dataverse_jsf_tests.yml +++ b/.github/workflows/dataverse_jsf_tests.yml @@ -230,6 +230,7 @@ jobs: DV_FULL_NAME: "Dataverse Admin" ROOT_DATAVERSE: "/dataverse/root" SKIP_PREFLIGHT: "true" + LOCALLY_FAIR_ENABLED: "true" DOTENV_CONFIG_QUIET: "true" # --------------------------- From 402cb3734546f3b0c7c57b07b605ea7299edcc9f Mon Sep 17 00:00:00 2001 From: Ash Manda Date: Thu, 17 Sep 2026 17:32:40 -0400 Subject: [PATCH 4/4] Disable LOCALLY_FAIR_ENABLED in workflow --- .github/workflows/dataverse_jsf_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dataverse_jsf_tests.yml b/.github/workflows/dataverse_jsf_tests.yml index 5a659c5b52e..8fb8a6c290e 100644 --- a/.github/workflows/dataverse_jsf_tests.yml +++ b/.github/workflows/dataverse_jsf_tests.yml @@ -230,7 +230,7 @@ jobs: DV_FULL_NAME: "Dataverse Admin" ROOT_DATAVERSE: "/dataverse/root" SKIP_PREFLIGHT: "true" - LOCALLY_FAIR_ENABLED: "true" + LOCALLY_FAIR_ENABLED: "false" DOTENV_CONFIG_QUIET: "true" # ---------------------------