We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc9afa0 commit 6a2dc10Copy full SHA for 6a2dc10
1 file changed
ProcessMaker/Multitenancy/TenantBootstrapper.php
@@ -66,6 +66,8 @@ private function setTenantEnvironmentVariables($app, $tenantData)
66
$config = json_decode($tenantData['config'], true);
67
68
$this->set('APP_CONFIG_CACHE', $app->basePath('storage/tenant_' . $tenantId . '/config.php'));
69
+ // Do not override packages cache path for now. Wait until the License service is updated.
70
+ // $this->set('APP_PACKAGES_CACHE', $app->basePath('storage/tenant_' . $tenantId . '/packages.php'));
71
$this->set('LARAVEL_STORAGE_PATH', $app->basePath('storage/tenant_' . $tenantId));
72
$this->set('APP_URL', $config['app.url']);
73
$this->set('APP_KEY', $this->decrypt($config['app.key']));
0 commit comments