Skip to content

Develop to main#24

Merged
vivekr-splunk merged 92 commits intomainfrom
develop
Nov 18, 2025
Merged

Develop to main#24
vivekr-splunk merged 92 commits intomainfrom
develop

Conversation

@vivekr-splunk
Copy link
Collaborator

No description provided.

scai-splunk and others added 30 commits October 13, 2025 05:50
updating for workspec update and remove fluentbit
Validation and unit test cases
Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

Copilot reviewed 107 out of 148 changed files in this pull request and generated 1 comment.


💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment on lines +632 to +638
old_val, ok := instanceScale[k]
if ok {
instanceScale[k] = old_val + val
} else {
instanceScale[k] = val
}
}
Copy link

Copilot AI Nov 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] The variable old_val is only used when ok is true. Consider using if oldVal, ok := instanceScale[k]; ok to limit scope and improve readability.

Suggested change
old_val, ok := instanceScale[k]
if ok {
instanceScale[k] = old_val + val
} else {
instanceScale[k] = val
}
}
if old_val, ok := instanceScale[k]; ok {
instanceScale[k] = old_val + val
} else {
instanceScale[k] = val
}
}
}

Copilot uses AI. Check for mistakes.
@vivekr-splunk vivekr-splunk merged commit d27cfd9 into main Nov 18, 2025
20 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants