From 71ba39628a4907918df9ce3a89aa92b153fa1e0a Mon Sep 17 00:00:00 2001
From: "Erin (Josh) Rigler" <erigler@usgs.gov>
Date: Tue, 17 Dec 2024 20:40:34 +0000
Subject: [PATCH] Update MetadataFactory.py to force IPV4 (not IPV6)

---
 geomagio/metadata/MetadataFactory.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/geomagio/metadata/MetadataFactory.py b/geomagio/metadata/MetadataFactory.py
index 6b052d33..3e3dce3f 100644
--- a/geomagio/metadata/MetadataFactory.py
+++ b/geomagio/metadata/MetadataFactory.py
@@ -10,6 +10,9 @@ from pydantic import TypeAdapter
 from .Metadata import Metadata
 from .MetadataQuery import MetadataQuery
 
+# Force IPV4 in requests package
+requests.packages.urllib3.util.connection.HAS_IPV6 = False
+
 # Set the API host and URL for the Geomagnetic Metadata service
 GEOMAG_API_HOST = os.getenv("GEOMAG_API_HOST", "geomag.usgs.gov")
 GEOMAG_API_URL = f"https://{GEOMAG_API_HOST}/ws/secure/metadata"
-- 
GitLab