Skip to content

Commit

Permalink
Fix pre-commit checks
Browse files Browse the repository at this point in the history
  • Loading branch information
aloftus23 committed Apr 30, 2024
1 parent ee574c4 commit af73bdb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -118,4 +118,4 @@
"test-python": "pytest"
},
"version": "1.0.0"
}
}
3 changes: 1 addition & 2 deletions backend/worker/pe-worker-entry.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ while true; do
echo "MESSAGE: $MESSAGE"
fi


# Check if there are no more messages. If no more, then exit Fargate container
if [ -z "$MESSAGE" ] || [ "$MESSAGE" == "null" ]; then
echo "No more messages in the queue. Exiting."
Expand Down Expand Up @@ -72,7 +71,7 @@ while true; do

# Run the pe-source command
eval "$COMMAND" \
&& cat /app/pe_reports_logging.log > /app/pe_reports_logging.log
&& cat /app/pe_reports_logging.log && rm /app/pe_reports_logging.log

# Delete the processed message from the queue
if [ "$IS_LOCAL" = true ]; then
Expand Down

0 comments on commit af73bdb

Please sign in to comment.