Another missing check for manifest.addons
This commit is contained in:
+1
-1
@@ -1792,7 +1792,7 @@ async function startRedis(existingInfra) {
|
||||
const allApps = await apps.list();
|
||||
|
||||
for (const app of allApps) {
|
||||
if (!('redis' in app.manifest.addons)) continue; // app doesn't use the addon
|
||||
if (!app.manifest.addons || !('redis' in app.manifest.addons)) continue; // app doesn't use the addon
|
||||
|
||||
const redisName = `redis-${app.id}`;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user