Mark shuttle as not at stop when removing a shuttle

This commit is contained in:
2025-11-23 20:29:50 -08:00
parent 19cdbec42b
commit 298bf229f8

View File

@@ -556,6 +556,7 @@ export class RedisShuttleRepository extends BaseRedisRepository implements Shutt
this.emit(ShuttleRepositoryEvent.SHUTTLE_REMOVED, shuttle); this.emit(ShuttleRepositoryEvent.SHUTTLE_REMOVED, shuttle);
await this.removeShuttleLastStopIfExists(shuttleId); await this.removeShuttleLastStopIfExists(shuttleId);
await this.markShuttleAsNotAtStop(shuttleId);
return shuttle; return shuttle;
} }