Skip to content

Commit 05cc58f

Browse files
committed
fix: bad plugin runtime ws url in migration
1 parent d887881 commit 05cc58f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pkg/persistence/migrations/dbm008_plugin_config.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ async def upgrade(self):
1010

1111
if 'plugin' not in self.ap.instance_config.data:
1212
self.ap.instance_config.data['plugin'] = {
13-
'runtime_ws_url': 'ws://localhost:5400/control/ws',
13+
'runtime_ws_url': 'ws://langbot_plugin_runtime:5400/control/ws',
14+
'enable_marketplace': True,
15+
'cloud_service_url': 'https://space.langbot.app',
1416
}
1517

1618
await self.ap.instance_config.dump_config()

0 commit comments

Comments
 (0)