Skip to content

Commit bee9f94

Browse files
feat: startup hooks for dedup
Signed-off-by: kapish <upadhyaykapish@gmail.com>
1 parent 892cfe3 commit bee9f94

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

keploy/keploy.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const (
3030
// controlSocketPath is used by Keploy to send commands (START/END) to the app.
3131
controlSocketPath = "/tmp/coverage_control.sock"
3232
// dataSocketPath is used by the app to send coverage data back to Keploy.
33-
dataSocketPath = "/tmp/coverage_data.sock"
33+
dataSocketPath = "@keploy_data_sock"
3434
)
3535

3636
var (
@@ -54,7 +54,6 @@ func startControlServer() {
5454
return
5555
}
5656
log.Printf("[Agent-Init] Control socket cleared. Path=%s", controlSocketPath)
57-
5857
ln, err := net.Listen("unix", controlSocketPath)
5958
if err != nil {
6059
log.Printf("[Agent] 🚨 FATAL: Could not start control server: %v", err)

0 commit comments

Comments
 (0)