Startup and update sequence

1. Version mismatch restart loop (pkg/hooks/worker.go):
    - Added versionsCompatible() and extractBaseVersion() functions
    - Hooks no longer restart worker when base versions match (e.g., v0.3.5-dirty ≈ v0.3.5-2-gca711a8-dirty)
2. Auto-update detection (internal/update/update.go):
    - isNewerVersion() now extracts base version before comparing
    - No longer always reports updates for dirty/dev builds
3. Non-blocking ChromaDB sync (internal/worker/handlers.go):
    - SyncUserPrompt now runs in a goroutine with 10-second timeout
    - /api/sessions/init responds immediately without waiting for ChromaDB
This commit is contained in:
2025-12-15 11:01:43 +00:00
parent c715413c09
commit 816af36dd3
4 changed files with 53 additions and 10 deletions
+36 -1
View File
@@ -58,9 +58,13 @@ func EnsureWorkerRunning() (int, error) {
// Check if already running and healthy
if IsWorkerRunning(port) {
// Check version - if mismatch, restart
// Check version - if mismatch, restart (unless both are dev builds)
if runningVersion := GetWorkerVersion(port); runningVersion != "" {
if runningVersion != Version {
// For dev/dirty builds, don't restart if base versions match
if versionsCompatible(runningVersion, Version) {
return port, nil
}
fmt.Fprintf(os.Stderr, "[claude-mnemonic] Worker version mismatch (running: %s, expected: %s), restarting...\n", runningVersion, Version)
if err := KillProcessOnPort(port); err != nil {
fmt.Fprintf(os.Stderr, "[claude-mnemonic] Warning: failed to kill old worker: %v\n", err)
@@ -275,3 +279,34 @@ func GET(port int, path string) (map[string]interface{}, error) {
return result, nil
}
// versionsCompatible checks if two versions are compatible for dev builds.
// Returns true if both versions share the same base version (ignoring -dirty, -dev, commit suffixes).
// This prevents unnecessary restarts during development.
func versionsCompatible(v1, v2 string) bool {
// If either is a plain "dev" version, consider it compatible with anything
if v1 == "dev" || v2 == "dev" {
return true
}
// Extract base versions (e.g., "v0.3.5" from "v0.3.5-2-gca711a8-dirty")
base1 := extractBaseVersion(v1)
base2 := extractBaseVersion(v2)
// If base versions match, they're compatible
return base1 == base2
}
// extractBaseVersion extracts the semver base from a version string.
// e.g., "v0.3.5-2-gca711a8-dirty" -> "0.3.5"
func extractBaseVersion(version string) string {
// Remove leading 'v' if present
v := strings.TrimPrefix(version, "v")
// Find first hyphen (start of suffix like -2-gcommit-dirty)
if idx := strings.Index(v, "-"); idx > 0 {
v = v[:idx]
}
return v
}