diff options
| author | Nate Sesti <sestinj@gmail.com> | 2023-07-06 23:10:18 -0700 | 
|---|---|---|
| committer | Nate Sesti <sestinj@gmail.com> | 2023-07-06 23:10:18 -0700 | 
| commit | 19b38863c21656526e0729776682430e0fa277da (patch) | |
| tree | b72530369047ba9b90c06aa28310b74e5244ee78 /continuedev | |
| parent | 54d4251ad948c8aab78e027a8fdf095dc8bebd89 (diff) | |
| download | sncontinue-19b38863c21656526e0729776682430e0fa277da.tar.gz sncontinue-19b38863c21656526e0729776682430e0fa277da.tar.bz2 sncontinue-19b38863c21656526e0729776682430e0fa277da.zip  | |
fix: :bug: fix command enter, stop streaming on reject
Diffstat (limited to 'continuedev')
| -rw-r--r-- | continuedev/src/continuedev/server/ide.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/continuedev/src/continuedev/server/ide.py b/continuedev/src/continuedev/server/ide.py index 61e7ca78..e4a6266a 100644 --- a/continuedev/src/continuedev/server/ide.py +++ b/continuedev/src/continuedev/server/ide.py @@ -250,7 +250,7 @@ class IdeProtocolServer(AbstractIdeProtocolServer):      def onDeleteAtIndex(self, index: int):          for _, session in self.session_manager.sessions.items(): -            session.autopilot.delete_at_index(index) +            asyncio.create_task(session.autopilot.delete_at_index(index))      def onCommandOutput(self, output: str):          # Send the output to ALL autopilots.  | 
