Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

incomm #391

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open

incomm #391

wants to merge 3 commits into from

Conversation

Gabriele-Clayton
Copy link
Contributor

No description provided.

Copy link

@clayton-staging clayton-staging bot left a comment

Choose a reason for hiding this comment

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

Code review not passed

This is the summary of issues introduced by this change:

Policy name Issues
Security (Orgs) 0
Test Custom Policy Conga 0
Flow Best Practices 0
Large Data Volumes 1
Naming Conventions 0
Salesforce Release Readiness 0
Documentation 0
Testing Best Practice 0
Clean Code 0
Error Handling 0
Unused Code 0

See the full report to learn more.

@@ -11,6 +11,10 @@ public class CandidateGradeController {
User currentUser = [SELECT Seniority__c FROM User where Id = :UserInfo.getUserId()];
String temperature = '';
Double commission = 0;

for (int i = 0; i < 5; i++) {
Contact currentContact22 = [SELECT Name, Salary__c, NextAvailableDate__c FROM Contact where Id = :contactId];

Choose a reason for hiding this comment

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

Large Data Volumes: Data access in loop

Severity

Error

Finding

This data query is inside a loop. Please move the query outside the loop and put records in collections for processing.

Why is this a problem?

Salesforce enforce a limit on the number of SOSL and DML statements per transaction. Reading or writing data inside loops is highly likely to hit such limits.

Help and documentation

Copy link

@clayton-staging clayton-staging bot left a comment

Choose a reason for hiding this comment

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

Code review not passed

This is the summary of issues introduced by this change:

Policy name Issues
Reliable 1
Resilient 0
Intentional 0
Compliant 0
Automated 0
Composable 0
Documentation 0
Engaging 0
Secure 0

See the full report to learn more.

@@ -11,6 +11,10 @@ public class CandidateGradeController {
User currentUser = [SELECT Seniority__c FROM User where Id = :UserInfo.getUserId()];
String temperature = '';
Double commission = 0;

for (int i = 0; i < 7; i++) {
Contact currentContact22 = [SELECT Name, Salary__c, NextAvailableDate__c FROM Contact where Id = :contactId];

Choose a reason for hiding this comment

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

Reliable: Data access in loop

Severity

Error

Finding

This data query is inside a loop. Please move the query outside the loop and put records in collections for processing.

Why is this a problem?

Salesforce enforce a limit on the number of SOSL and DML statements per transaction. Reading or writing data inside loops is highly likely to hit such limits.

Help and documentation

Copy link

@clayton-staging clayton-staging bot left a comment

Choose a reason for hiding this comment

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

Code review not passed

This is the summary of issues introduced by this change:

Policy name Issues
Testing Best Practice 0
Salesforce Release Readiness 0
Flow Best Practices 0
Clean Code 0
Large Data Volumes 1
Security (Orgs) 0
Error Handling 0

See the full report to learn more.

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.

None yet

1 participant