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 10a5541 commit 2352a6eCopy full SHA for 2352a6e
packages/python/plotly/plotly/io/_orca.py
@@ -1384,11 +1384,10 @@ def ensure_server():
1384
"""
1385
)
1386
1387
- # Validate orca executable
1388
- if status.state == "unvalidated":
1389
- validate_executable()
1390
-
1391
if not config.server_url:
+ # Validate orca executable only if server_url is not provided
+ if status.state == "unvalidated":
+ validate_executable()
1392
# Acquire lock to make sure that we keep the properties of orca_state
1393
# consistent across threads
1394
with orca_lock:
0 commit comments