You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Warn if docker was requested but cannot be provided. In this case
261
-
# the current behavior is to fall back to run natively, but this behavior
260
+
# Warn if use_docker was unspecified (or None), and cannot be provided (the default).
261
+
# In this case the current behavior is to fall back to run natively, but this behavior
262
262
# is subject to change.
263
-
ifuse_dockeranddockerisNone:
264
-
use_docker=False
265
-
logger.warning(
266
-
"execute_code was called with use_docker evaluating to True, but the python docker package is not available. Falling back to native code execution. Note: this fallback behavior is subject to change"
267
-
)
263
+
ifuse_dockerisNone:
264
+
ifdockerisNone:
265
+
use_docker=False
266
+
logger.warning(
267
+
"execute_code was called without specifying a value for use_docker. Since the python docker package is not available, code will be run natively. Note: this fallback behavior is subject to change"
0 commit comments