File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -40,14 +40,13 @@ export class DeleteProjectService {
4040 await marqs ?. removeEnvironmentQueuesFromMasterQueue ( project . organization . id , environment . id ) ;
4141 }
4242
43- // Delete all queues from the RunEngine 2 master queues
43+ // Delete all queues from the RunEngine 2 prod master queues
4444 const workerGroups = await this . #prismaClient. workerInstanceGroup . findMany ( {
4545 select : {
4646 masterQueue : true ,
4747 } ,
4848 } ) ;
4949 const engineMasterQueues = workerGroups . map ( ( group ) => group . masterQueue ) ;
50-
5150 for ( const masterQueue of engineMasterQueues ) {
5251 await engine . removeEnvironmentQueuesFromMasterQueue ( {
5352 masterQueue,
@@ -56,6 +55,8 @@ export class DeleteProjectService {
5655 } ) ;
5756 }
5857
58+ // todo Delete all queues from the RunEngine 2 dev master queues
59+
5960 // Mark the project as deleted (do this last because it makes it impossible to try again)
6061 // - This disables all API keys
6162 // - This disables all schedules from being scheduled
You can’t perform that action at this time.
0 commit comments