- agent.go: guard reader goroutine msgCh send with sessionCtx.Done() to prevent permanent goroutine hang - checks.go: cache regex.Compile (not MatchString) per HTTP check; cache x509.SystemCertPool via sync.Once across SSL checks - lldp.go: remove dead walkErrors variable - ssh_test.go: reset global host key store to fix TOFU port collision flakiness across tests - .gitignore: add towerops-agent binary, .tool-versions
40 lines
325 B
Text
40 lines
325 B
Text
# Go
|
|
towerops-agent
|
|
*.test
|
|
cover.out
|
|
cover.html
|
|
|
|
# Runtime data
|
|
known_hosts.json
|
|
|
|
# Database files
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Docker
|
|
data/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Nix
|
|
.direnv/
|
|
result
|
|
|
|
# Local scripts
|
|
monitor-deploy.sh
|
|
|
|
# Tool versions (asdf, mise)
|
|
.tool-versions
|
|
|
|
# Claude
|
|
CLAUDE.md
|