update README

This commit is contained in:
Benson Wong
2024-11-18 15:37:50 -08:00
parent 401aa88949
commit a33ac6f8fb
3 changed files with 9 additions and 12 deletions

View File

@@ -29,7 +29,7 @@ func getBinaryPath() string {
return filepath.Join("..", "build", fmt.Sprintf("simple-responder_%s_%s", goos, goarch))
}
func TestProcess_StartProxyStop(t *testing.T) {
func TestProcess_ProcessStartStop(t *testing.T) {
// Define the range
min := 12000
max := 13000

View File

@@ -75,7 +75,7 @@ func (pm *ProxyManager) streamLogsHandlerSSE(c *gin.Context) {
notify := c.Request.Context().Done()
// Send history first if not skipped
_, skipHistory := c.GetQuery("skip")
_, skipHistory := c.GetQuery("no-history")
if !skipHistory {
history := pm.logMonitor.GetHistory()
if len(history) != 0 {