File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -129,17 +129,16 @@ func AIDevOpsAgentTool(config *config.Config, client *client.GenaiService) (tool
129
129
130
130
// Override with values from request if provided
131
131
if harnessContextRaw != nil {
132
- if accountID , ok := harnessContextRaw ["accountID " ].(string ); ok && accountID != "" {
132
+ if accountID , ok := harnessContextRaw ["account_id " ].(string ); ok && accountID != "" {
133
133
harnessContext .AccountID = accountID
134
134
}
135
- if orgID , ok := harnessContextRaw ["orgID " ].(string ); ok && orgID != "" {
135
+ if orgID , ok := harnessContextRaw ["org_id " ].(string ); ok && orgID != "" {
136
136
harnessContext .OrgID = orgID
137
137
}
138
- if projectID , ok := harnessContextRaw ["projectID " ].(string ); ok && projectID != "" {
138
+ if projectID , ok := harnessContextRaw ["project_id " ].(string ); ok && projectID != "" {
139
139
harnessContext .ProjectID = projectID
140
140
}
141
141
}
142
-
143
142
// Generate or use provided IDs
144
143
var finalConversationID , finalInteractionID string
145
144
You can’t perform that action at this time.
0 commit comments