custom server port not respected #27
Labels
No labels
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set
Reference
kahliburke/Kaimon.jl#27
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Hi, Thanks a lot for this package which seems super neat!
I am trying to run Kaimon with a custom port instead of 2828.
I set a different port in the setup, and I correctly see the changed port in the ~/.config/kaimon/config.json
Unfortunately when starting the kaimon app, it looks like the setting is ignored based on the TUI:
Is this a bug?
@disberd Looks like it is, there is a command line option which is used but it doesn't respect the config.json setting. I'll fix it and put out a patch release, but you can get around it now with:
@disberd - 1.3.1 on the way
Fixed in v1.3.1. The TUI entry point (
@main) was only checking--portfrom CLI args and falling back to the hardcoded default, never reading fromconfig.json. The headless path already did the right thing — the TUI now matches.Priority: CLI
--port>config.jsonportfield > default 2828.Thanks for the report!