Skip to content

Commit be62077

Browse files
Disable client caching by default - this was effectively the default behavior prior to the introduction of ImmutableGeophiresInputParameters, and we want to minimize the risk of caching-by-default causing unforeseen issues for existing consumers
1 parent 1733a0a commit be62077

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/geophires_x_client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class GeophiresXClient:
2828
_init_lock = threading.Lock()
2929
"""A standard threading lock to make the one-time initialization thread-safe."""
3030

31-
def __init__(self, enable_caching=True, logger_name=None):
31+
def __init__(self, enable_caching=False, logger_name=None):
3232
if logger_name is None:
3333
logger_name = __name__
3434

0 commit comments

Comments
 (0)