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

Task #218152 Created the cron job and function to calculate the distnace between camp and attendance location #1152

Open
wants to merge 3 commits into
base: release-2.8.4
Choose a base branch
from

Conversation

YoginiTayade
Copy link
Contributor

@YoginiTayade YoginiTayade commented May 22, 2024

I have ensured that following Pull Request Checklist is taken care of before sending this PR

  • Code is formatted as per format decided
  • Updated acceptance criteria in tracker
  • Updated test cases in test-cases-tracker
  • Updated new API endpoint if any in common postman collection
  • Updated DB changes in db-tracker if any

Summary by CodeRabbit

  • New Features

    • Introduced distance calculation for camp attendance using geographical coordinates.
    • Added automatic distance updates via a scheduled cron job.
  • Improvements

    • Enhanced error handling for distance calculation failures during camp attendance marking.

Copy link

coderabbitai bot commented May 22, 2024

Walkthrough

The recent updates introduce a new property, camp_to_attendance_location_distance, to the AttendancesService and enhance the markCampAttendance method in the CampService with distance calculation logic. Additionally, a new DistanceCalculation class is added to manage periodic distance calculations using a cron job. These changes improve the system's ability to calculate and handle distances between locations, ensuring accurate and timely updates.

Changes

Files Change Summaries
src/.../attendances/attendances.service.ts Added camp_to_attendance_location_distance property to AttendancesService.
src/.../camp/camp.service.ts Enhanced markCampAttendance method with distance calculation logic and error handling. Updated camp_attendance_body.
src/.../cron/cron.module.ts Imported DistanceCalculation in CronModule.
src/.../cron/distanceCalculation.cron.ts Added DistanceCalculation class with methods for distance calculation using the Haversine formula. Scheduled data processing with a cron job.

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share
Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger a review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 2

Outside diff range and nitpick comments (1)
src/src/camp/camp.service.ts (1)

Line range hint 2578-2641: Refactor the markCampAttendance method to improve readability and maintainability.

The markCampAttendance method is quite lengthy and performs multiple operations, which makes it hard to read and maintain. Consider breaking it down into smaller, more focused methods. For example, the SQL query construction and execution can be extracted into a separate method, and the error handling logic can be encapsulated in another method. This will make the code cleaner and easier to manage.

Review Details

Configuration used: .coderabbit.yaml
Review profile: CHILL

Commits Files that changed from the base of the PR and between f4c6149 and 0c30b70.
Files selected for processing (4)
  • src/src/attendances/attendances.service.ts (1 hunks)
  • src/src/camp/camp.service.ts (2 hunks)
  • src/src/cron/cron.module.ts (2 hunks)
  • src/src/cron/distanceCalculation.cron.ts (1 hunks)
Additional Context Used
Path-based Instructions (4)
src/src/cron/cron.module.ts (1)

Pattern **/*.ts: "Review the JavaScript code for conformity with the Google JavaScript style guide, highlighting any deviations. Ensure that:

  • The code adheres to best practices associated with nodejs.
  • The code adheres to best practices associated with nestjs framework.
  • The code adheres to best practices recommended for performance.
  • The code adheres to similar naming conventions for controllers, models, services, methods, variables."
src/src/attendances/attendances.service.ts (1)

Pattern **/*.ts: "Review the JavaScript code for conformity with the Google JavaScript style guide, highlighting any deviations. Ensure that:

  • The code adheres to best practices associated with nodejs.
  • The code adheres to best practices associated with nestjs framework.
  • The code adheres to best practices recommended for performance.
  • The code adheres to similar naming conventions for controllers, models, services, methods, variables."
src/src/cron/distanceCalculation.cron.ts (1)

Pattern **/*.ts: "Review the JavaScript code for conformity with the Google JavaScript style guide, highlighting any deviations. Ensure that:

  • The code adheres to best practices associated with nodejs.
  • The code adheres to best practices associated with nestjs framework.
  • The code adheres to best practices recommended for performance.
  • The code adheres to similar naming conventions for controllers, models, services, methods, variables."
src/src/camp/camp.service.ts (1)

Pattern **/*.ts: "Review the JavaScript code for conformity with the Google JavaScript style guide, highlighting any deviations. Ensure that:

  • The code adheres to best practices associated with nodejs.
  • The code adheres to best practices associated with nestjs framework.
  • The code adheres to best practices recommended for performance.
  • The code adheres to similar naming conventions for controllers, models, services, methods, variables."
Additional comments not posted (4)
src/src/cron/cron.module.ts (2)

12-12: The import of DistanceCalculation is correctly added.


27-27: The addition of DistanceCalculation to the providers list is correctly implemented.

src/src/attendances/attendances.service.ts (1)

30-30: The addition of camp_to_attendance_location_distance to returnFields is correctly implemented.

src/src/cron/distanceCalculation.cron.ts (1)

32-69: The implementation of fetchData using GraphQL is appropriate and well-structured.

Comment on lines 8 to 30
private async haversineFormula(
campLat: any,
campLong: any,
attendanceLat: any,
attendanceLong: any,
) {
const sql = `SELECT CASE WHEN COALESCE(NULLIF('${campLat}', ''), 'null') = 'null'
OR COALESCE(NULLIF('${attendanceLat}', ''), 'null') = 'null'
OR COALESCE(NULLIF('${campLong}', ''), 'null') = 'null'
OR COALESCE(NULLIF('${attendanceLong}', ''), 'null') = 'null' THEN
0::numeric
ELSE round( cast( 6371 * 2 * asin( sqrt( power(sin(radians(COALESCE(NULLIF('${campLat}', '0')::DOUBLE PRECISION, 0) - COALESCE(NULLIF('${attendanceLat}', '0')::DOUBLE PRECISION, 0)) / 2), 2) + cos(radians(COALESCE(NULLIF('${campLat}', '0')::DOUBLE PRECISION, 0))) * cos(radians(COALESCE(NULLIF('${campLat}', '0')::DOUBLE PRECISION, 0))) * power(sin(radians(COALESCE(NULLIF('${campLong}', '0')::DOUBLE PRECISION, 0) - COALESCE(NULLIF('${attendanceLong}', '0')::DOUBLE PRECISION, 0)) / 2), 2) ) ) AS numeric ), 2 )
END`;
try {
const response = (
await this.hasuraServiceFromService.executeRawSql(sql)
).result;
const formattedData =
this.hasuraServiceFromService.getFormattedData(response);
return formattedData[0].round;
} catch {
return [];
}
Copy link

Choose a reason for hiding this comment

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

Consider refactoring haversineFormula to use application logic instead of SQL for distance calculation.

- private async haversineFormula(campLat: any, campLong: any, attendanceLat: any, attendanceLong: any) {
-   const sql = `SELECT CASE WHEN COALESCE(NULLIF('${campLat}', ''), 'null') = 'null'
-     OR     COALESCE(NULLIF('${attendanceLat}', ''), 'null') = 'null'
-     OR     COALESCE(NULLIF('${campLong}', ''), 'null') = 'null'
-     OR     COALESCE(NULLIF('${attendanceLong}', ''), 'null') = 'null' THEN
-     0::numeric
-     ELSE round( cast( 6371 * 2 * asin( sqrt( power(sin(radians(COALESCE(NULLIF('${campLat}', '0')::DOUBLE PRECISION, 0) - COALESCE(NULLIF('${attendanceLat}', '0')::DOUBLE PRECISION, 0)) / 2), 2) + cos(radians(COALESCE(NULLIF('${campLat}', '0')::DOUBLE PRECISION, 0))) * cos(radians(COALESCE(NULLIF('${campLat}', '0')::DOUBLE PRECISION, 0))) * power(sin(radians(COALESCE(NULLIF('${campLong}', '0')::DOUBLE PRECISION, 0) - COALESCE(NULLIF('${attendanceLong}', '0')::DOUBLE PRECISION, 0)) / 2), 2) ) ) AS numeric ), 2 )
-     END`;
-   try {
-     const response = (await this.hasuraServiceFromService.executeRawSql(sql)).result;
-     const formattedData = this.hasuraServiceFromService.getFormattedData(response);
-     return formattedData[0].round;
-   } catch {
-     return [];
-   }
- }
+ private haversineFormula(campLat: number, campLong: number, attendanceLat: number, attendanceLong: number): number {
+   const R = 6371; // Radius of the Earth in km
+   const dLat = (attendanceLat - campLat) * (Math.PI / 180);
+   const dLon = (attendanceLong - campLong) * (Math.PI / 180);
+   const a = Math.sin(dLat / 2) * Math.sin(dLat / 2) +
+             Math.cos(campLat * (Math.PI / 180)) * Math.cos(attendanceLat * (Math.PI / 180)) *
+             Math.sin(dLon / 2) * Math.sin(dLon / 2);
+   const c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a));
+   return R * c; // Distance in km
+ }

Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation.

Suggested change
private async haversineFormula(
campLat: any,
campLong: any,
attendanceLat: any,
attendanceLong: any,
) {
const sql = `SELECT CASE WHEN COALESCE(NULLIF('${campLat}', ''), 'null') = 'null'
OR COALESCE(NULLIF('${attendanceLat}', ''), 'null') = 'null'
OR COALESCE(NULLIF('${campLong}', ''), 'null') = 'null'
OR COALESCE(NULLIF('${attendanceLong}', ''), 'null') = 'null' THEN
0::numeric
ELSE round( cast( 6371 * 2 * asin( sqrt( power(sin(radians(COALESCE(NULLIF('${campLat}', '0')::DOUBLE PRECISION, 0) - COALESCE(NULLIF('${attendanceLat}', '0')::DOUBLE PRECISION, 0)) / 2), 2) + cos(radians(COALESCE(NULLIF('${campLat}', '0')::DOUBLE PRECISION, 0))) * cos(radians(COALESCE(NULLIF('${campLat}', '0')::DOUBLE PRECISION, 0))) * power(sin(radians(COALESCE(NULLIF('${campLong}', '0')::DOUBLE PRECISION, 0) - COALESCE(NULLIF('${attendanceLong}', '0')::DOUBLE PRECISION, 0)) / 2), 2) ) ) AS numeric ), 2 )
END`;
try {
const response = (
await this.hasuraServiceFromService.executeRawSql(sql)
).result;
const formattedData =
this.hasuraServiceFromService.getFormattedData(response);
return formattedData[0].round;
} catch {
return [];
}
private haversineFormula(campLat: number, campLong: number, attendanceLat: number, attendanceLong: number): number {
const R = 6371; // Radius of the Earth in km
const dLat = (attendanceLat - campLat) * (Math.PI / 180);
const dLon = (attendanceLong - campLong) * (Math.PI / 180);
const a = Math.sin(dLat / 2) * Math.sin(dLat / 2) +
Math.cos(campLat * (Math.PI / 180)) * Math.cos(attendanceLat * (Math.PI / 180)) *
Math.sin(dLon / 2) * Math.sin(dLon / 2);
const c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a));
return R * c; // Distance in km
}

Comment on lines 72 to 144
//cron runs for each hour's 30th minute
@Cron('30 * * * *')
private async processData() {
const user = await this.fetchData(10);

try {
for (const userData of user) {
const campData = userData.camp?.properties;
const attendanceData = userData?.attendances?.[0];
const attendanceId = attendanceData.id;
console.log('ATTENDANCEDATA ', attendanceData);
console.log('CAMPDATA ', campData);

if (!campData || !attendanceData) {
console.log('SKIP - Missing campData or attendanceData');
continue;
}
const campLat = parseFloat(campData.lat);
const campLong = parseFloat(campData.long);
const attendanceLat = parseFloat(attendanceData.lat);
const attendanceLong = parseFloat(attendanceData.long);
console.log(
'campLat ',
campLat,
'campLong ',
campLong,
'attendanceLat ',
attendanceLat,
'attendanceLong ',
attendanceLong,
);
if (
isNaN(campLat) ||
isNaN(campLong) ||
isNaN(attendanceLat) ||
isNaN(attendanceLong)
) {
console.log('SKIP - Invalid coordinates');
continue;
}

const calculatedDistance = await this.haversineFormula(
campLat,
campLong,
attendanceLat,
attendanceLong,
);
console.log(
'Distance between attendance and camp location ',
calculatedDistance,
);
const updateQuery = {
query: `mutation MyMutation {
update_attendance(where: {id: {_eq: ${attendanceId}}}, _set: {camp_to_attendance_location_distance: ${calculatedDistance}}) {
returning {
id
camp_to_attendance_location_distance
}
}
}

`,
};
console.log(updateQuery.query);

const updatedResult =
await this.hasuraServiceFromService.getData(updateQuery);
console.log(JSON.stringify(updatedResult));
}
} catch (error) {
console.log('Error occurred while updating ', error);
return [];
}
Copy link

Choose a reason for hiding this comment

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

The processData method is well-implemented. Consider enhancing error logging for better traceability.

- console.log('Error occurred while updating ', error);
+ console.error('Error occurred while updating: ', error.message);

Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation.

Suggested change
//cron runs for each hour's 30th minute
@Cron('30 * * * *')
private async processData() {
const user = await this.fetchData(10);
try {
for (const userData of user) {
const campData = userData.camp?.properties;
const attendanceData = userData?.attendances?.[0];
const attendanceId = attendanceData.id;
console.log('ATTENDANCEDATA ', attendanceData);
console.log('CAMPDATA ', campData);
if (!campData || !attendanceData) {
console.log('SKIP - Missing campData or attendanceData');
continue;
}
const campLat = parseFloat(campData.lat);
const campLong = parseFloat(campData.long);
const attendanceLat = parseFloat(attendanceData.lat);
const attendanceLong = parseFloat(attendanceData.long);
console.log(
'campLat ',
campLat,
'campLong ',
campLong,
'attendanceLat ',
attendanceLat,
'attendanceLong ',
attendanceLong,
);
if (
isNaN(campLat) ||
isNaN(campLong) ||
isNaN(attendanceLat) ||
isNaN(attendanceLong)
) {
console.log('SKIP - Invalid coordinates');
continue;
}
const calculatedDistance = await this.haversineFormula(
campLat,
campLong,
attendanceLat,
attendanceLong,
);
console.log(
'Distance between attendance and camp location ',
calculatedDistance,
);
const updateQuery = {
query: `mutation MyMutation {
update_attendance(where: {id: {_eq: ${attendanceId}}}, _set: {camp_to_attendance_location_distance: ${calculatedDistance}}) {
returning {
id
camp_to_attendance_location_distance
}
}
}
`,
};
console.log(updateQuery.query);
const updatedResult =
await this.hasuraServiceFromService.getData(updateQuery);
console.log(JSON.stringify(updatedResult));
}
} catch (error) {
console.log('Error occurred while updating ', error);
return [];
}
//cron runs for each hour's 30th minute
@Cron('30 * * * *')
private async processData() {
const user = await this.fetchData(10);
try {
for (const userData of user) {
const campData = userData.camp?.properties;
const attendanceData = userData?.attendances?.[0];
const attendanceId = attendanceData.id;
console.log('ATTENDANCEDATA ', attendanceData);
console.log('CAMPDATA ', campData);
if (!campData || !attendanceData) {
console.log('SKIP - Missing campData or attendanceData');
continue;
}
const campLat = parseFloat(campData.lat);
const campLong = parseFloat(campData.long);
const attendanceLat = parseFloat(attendanceData.lat);
const attendanceLong = parseFloat(attendanceData.long);
console.log(
'campLat ',
campLat,
'campLong ',
campLong,
'attendanceLat ',
attendanceLat,
'attendanceLong ',
attendanceLong,
);
if (
isNaN(campLat) ||
isNaN(campLong) ||
isNaN(attendanceLat) ||
isNaN(attendanceLong)
) {
console.log('SKIP - Invalid coordinates');
continue;
}
const calculatedDistance = await this.haversineFormula(
campLat,
campLong,
attendanceLat,
attendanceLong,
);
console.log(
'Distance between attendance and camp location ',
calculatedDistance,
);
const updateQuery = {
query: `mutation MyMutation {
update_attendance(where: {id: {_eq: ${attendanceId}}}, _set: {camp_to_attendance_location_distance: ${calculatedDistance}}) {
returning {
id
camp_to_attendance_location_distance
}
}
}
`,
};
console.log(updateQuery.query);
const updatedResult =
await this.hasuraServiceFromService.getData(updateQuery);
console.log(JSON.stringify(updatedResult));
}
} catch (error) {
console.error('Error occurred while updating: ', error.message);
return [];
}

const campData = userData.camp?.properties;
const attendanceData = userData?.attendances?.[0];
const attendanceId = attendanceData.id;
console.log('ATTENDANCEDATA ', attendanceData);
Copy link
Contributor

Choose a reason for hiding this comment

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

keep console log only if neccessary otherwise remove it

console.log('CAMPDATA ', campData);

if (!campData || !attendanceData) {
console.log('SKIP - Missing campData or attendanceData');
Copy link
Contributor

Choose a reason for hiding this comment

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

Here instead of console log is return statement expected?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

we are skippin the records so we cannot return anything there

Copy link

Quality Gate Passed Quality Gate passed

Issues
0 New issues
0 Accepted issues

Measures
0 Security Hotspots
No data about Coverage
No data about Duplication

See analysis details on SonarCloud

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 3

Outside diff range and nitpick comments (1)
src/src/cron/distanceCalculation.cron.ts (1)

82-82: Review the use of console logs for better logging practices.

The use of console.log for debugging is common, but in a production environment, it's better to use a more robust logging framework that can handle different log levels and outputs. Consider replacing console.log with a more sophisticated logging approach.

Also applies to: 86-86

Review Details

Configuration used: .coderabbit.yaml
Review profile: CHILL

Commits Files that changed from the base of the PR and between 0c30b70 and bacf009.
Files selected for processing (1)
  • src/src/cron/distanceCalculation.cron.ts (1 hunks)
Additional Context Used
Path-based Instructions (1)
src/src/cron/distanceCalculation.cron.ts (1)

Pattern **/*.ts: "Review the JavaScript code for conformity with the Google JavaScript style guide, highlighting any deviations. Ensure that:

  • The code adheres to best practices associated with nodejs.
  • The code adheres to best practices associated with nestjs framework.
  • The code adheres to best practices recommended for performance.
  • The code adheres to similar naming conventions for controllers, models, services, methods, variables."
Additional comments not posted (1)
src/src/cron/distanceCalculation.cron.ts (1)

73-73: Verify the cron expression for accuracy.

The cron expression '30 * * * *' indicates that the processData method will run at the 30th minute of every hour. Confirm that this timing aligns with the intended frequency for data processing.

Comment on lines +14 to +19
const sql = `SELECT CASE WHEN COALESCE(NULLIF('${campLat}', ''), 'null') = 'null'
OR COALESCE(NULLIF('${attendanceLat}', ''), 'null') = 'null'
OR COALESCE(NULLIF('${campLong}', ''), 'null') = 'null'
OR COALESCE(NULLIF('${attendanceLong}', ''), 'null') = 'null' THEN
0::numeric
ELSE round( cast( 6371 * 2 * asin( sqrt( power(sin(radians(COALESCE(NULLIF('${campLat}', '0')::DOUBLE PRECISION, 0) - COALESCE(NULLIF('${attendanceLat}', '0')::DOUBLE PRECISION, 0)) / 2), 2) + cos(radians(COALESCE(NULLIF('${campLat}', '0')::DOUBLE PRECISION, 0))) * cos(radians(COALESCE(NULLIF('${campLat}', '0')::DOUBLE PRECISION, 0))) * power(sin(radians(COALESCE(NULLIF('${campLong}', '0')::DOUBLE PRECISION, 0) - COALESCE(NULLIF('${attendanceLong}', '0')::DOUBLE PRECISION, 0)) / 2), 2) ) ) AS numeric ), 2 )
Copy link

Choose a reason for hiding this comment

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

Ensure SQL queries are safe from injection vulnerabilities.

The current implementation of the SQL query in haversineFormula method might be vulnerable to SQL injection if not properly sanitized. Consider using parameterized queries to enhance security.

Comment on lines +9 to +12
campLat: any,
campLong: any,
attendanceLat: any,
attendanceLong: any,
Copy link

Choose a reason for hiding this comment

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

Consider using more specific types for latitude and longitude parameters.

Using any type for latitude and longitude parameters reduces type safety. It's better to use number type for these parameters to ensure that the values being passed are of the expected type.

- campLat: any,
- campLong: any,
- attendanceLat: any,
- attendanceLong: any,
+ campLat: number,
+ campLong: number,
+ attendanceLat: number,
+ attendanceLong: number,

Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation.

Suggested change
campLat: any,
campLong: any,
attendanceLat: any,
attendanceLong: any,
campLat: number,
campLong: number,
attendanceLat: number,
attendanceLong: number,

console.log(JSON.stringify(updatedResult));
}
} catch (error) {
console.log('Error occurred while updating ', error);
Copy link

Choose a reason for hiding this comment

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

Enhance error handling by logging more detailed information.

When logging errors, it's beneficial to log more detailed information about the error to aid in debugging. Consider logging the error message along with the stack trace.

- console.log('Error occurred while updating ', error);
+ console.error('Error occurred while updating: ', error.message, error.stack);

Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation.

Suggested change
console.log('Error occurred while updating ', error);
console.error('Error occurred while updating: ', error.message, error.stack);

@YoginiTayade YoginiTayade changed the title Task #218152 Task #218151 Created the cron job and function to calculate the distnace between camp and attendance location Task #218152 Created the cron job and function to calculate the distnace between camp and attendance location May 22, 2024
@rushi-tekdi rushi-tekdi changed the base branch from release-2.2.0 to release-2.3.0 June 21, 2024 05:02
@sagarkoshti1990 sagarkoshti1990 changed the base branch from release-2.5.0 to release-2.6.0 August 30, 2024 05:39
@sagarkoshti1990 sagarkoshti1990 changed the base branch from release-2.7.0 to release-2.8.0 September 24, 2024 06:26
@Pritams43 Pritams43 changed the base branch from release-2.8.0 to release-2.8.2 November 21, 2024 05:57
@Pritams43 Pritams43 changed the base branch from release-2.8.2 to release-2.8.3 December 10, 2024 06:05
@Pritams43 Pritams43 changed the base branch from release-2.8.3 to release-2.8.4 December 18, 2024 06:00
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.

2 participants