We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0480065 commit faa2a32Copy full SHA for faa2a32
modin/engines/ray/utils.py
@@ -113,9 +113,10 @@ def initialize_ray(
113
object_store_memory = os.environ.get("MODIN_MEMORY", None)
114
plasma_directory = os.environ.get("MODIN_ON_RAY_PLASMA_DIR", None)
115
if os.environ.get("MODIN_OUT_OF_CORE", "False").title() == "True":
116
- from tempfile import gettempdir
117
118
if plasma_directory is None:
+ from tempfile import gettempdir
119
+
120
plasma_directory = gettempdir()
121
# We may have already set the memory from the environment variable, we don't
122
# want to overwrite that value if we have.
0 commit comments