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 c07410c commit d837decCopy full SHA for d837dec
matlab_proxy/app_state.py
@@ -500,7 +500,10 @@ async def start_matlab(self, restart_matlab=False):
500
# The matlab ready file is written into this location by MATLAB
501
# The matlab_ready_file_dir is where MATLAB will write any subsequent logs
502
matlab_env["MATLAB_LOG_DIR"] = str(self.matlab_ready_file_dir)
503
+ # For r2020b, r2021a
504
matlab_env["MW_CD_ANYWHERE_ENABLED"] = "true"
505
+ # For > r2021b
506
+ matlab_env["MW_CD_ANYWHERE_DISABLED"] = "false"
507
if self.licensing["type"] == "mhlm":
508
matlab_env["MLM_WEB_LICENSE"] = "true"
509
matlab_env["MLM_WEB_USER_CRED"] = access_token_data["token"]
0 commit comments