Skip to content

Commit fee9454

Browse files
committed
feat: fmt code
Signed-off-by: Alex Jones <alexsimonjones@gmail.com>
1 parent 6c61113 commit fee9454

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

internal/controller/agentrun_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3541,7 +3541,7 @@ func hasResponseGateHook(agentRun *sympoziumv1alpha1.AgentRun) bool {
35413541
// gateVerdict represents the JSON payload a gate hook writes to the
35423542
// sympozium.ai/gate-verdict annotation on the AgentRun CR.
35433543
type gateVerdict struct {
3544-
Action string `json:"action"` // approve, reject, rewrite
3544+
Action string `json:"action"` // approve, reject, rewrite
35453545
Response string `json:"response,omitempty"` // replacement text for reject/rewrite
35463546
Reason string `json:"reason,omitempty"` // audit trail
35473547
}

internal/ipc/bridge.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ const (
3232

3333
// Bridge is the IPC bridge sidecar process.
3434
type Bridge struct {
35-
BasePath string // Root IPC path (e.g., /ipc)
36-
AgentRunID string
37-
InstanceName string
38-
EventBus eventbus.EventBus
39-
Log logr.Logger
40-
Watcher *Watcher
35+
BasePath string // Root IPC path (e.g., /ipc)
36+
AgentRunID string
37+
InstanceName string
38+
EventBus eventbus.EventBus
39+
Log logr.Logger
40+
Watcher *Watcher
4141
agentDone chan struct{} // signalled when result.json is received
4242
processedFiles sync.Map // dedup fsnotify Create+Write for the same file
4343
SuppressCompletion bool // when true, do not publish TopicAgentRunCompleted (gate mode)

0 commit comments

Comments
 (0)