Skip to content

Commit

Permalink
fix(chore): correct server listening port
Browse files Browse the repository at this point in the history
  • Loading branch information
ArmandMeppa committed Dec 3, 2024
1 parent 11af871 commit 33f492a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wazuh-agent-status/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

func main() {
log.Println("Starting wazuh-agent-status server...")
listener, err := net.Listen("tcp", ":50605")
listener, err := net.Listen("tcp", ":50505")
if err != nil {
log.Fatalf("Failed to start server: %v", err)
}
Expand Down

0 comments on commit 33f492a

Please sign in to comment.