Skip to content

Commit 5f5d883

Browse files
authored
[chore](tests): fix gofumpt issues part 1 (#4804)
#### Description fix gofumpt issues in tests/test-e2e-apps/bridge-server --- This commit was automatically created by review-helper. Changes are split into focused commits grouped by directory to simplify the review process. Signed-off-by: Matthieu MOREL <matthieu.morel35@gmail.com>
1 parent ebb6ab9 commit 5f5d883

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

tests/test-e2e-apps/bridge-server/data/agent.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ func (agent *Agent) UpdateStatus(
104104
agent.processStatusUpdate(statusMsg, response)
105105

106106
if statusMsg.ConnectionSettingsRequest != nil {
107-
//agent.processConnectionSettingsRequest(statusMsg.ConnectionSettingsRequest.Opamp, response)
107+
// agent.processConnectionSettingsRequest(statusMsg.ConnectionSettingsRequest.Opamp, response)
108108
}
109109

110110
statusUpdateWatchers := agent.statusUpdateWatchers

tests/test-e2e-apps/bridge-server/main.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ import (
1515
var logger = log.New(log.Default().Writer(), "[MAIN] ", log.Default().Flags()|log.Lmsgprefix|log.Lmicroseconds)
1616

1717
func main() {
18-
1918
logger.Println("OpAMP Server starting...")
2019
agents := data.NewAgents()
2120
opampSrv := opampsrv.NewServer(agents)

tests/test-e2e-apps/bridge-server/opampsrv/opampsrv.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,5 +168,4 @@ func (srv *Server) getAgentById(writer http.ResponseWriter, request *http.Reques
168168
return
169169
}
170170
writer.Write(marshaled)
171-
172171
}

0 commit comments

Comments
 (0)