-
-
Notifications
You must be signed in to change notification settings - Fork 101
Handling /reminder failure cases #779
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
Conversation
what's happening, is it something wrong with code? not familiar with these automated checks |
u can click on details to know what each are about |
application/src/main/java/org/togetherjava/tjbot/features/reminder/RemindRoutine.java
Outdated
Show resolved
Hide resolved
application/src/main/resources/db/V13__Add_Reminder_Failure_Counter.sql
Outdated
Show resolved
Hide resolved
application/src/main/java/org/togetherjava/tjbot/features/reminder/RemindRoutine.java
Outdated
Show resolved
Hide resolved
application/src/main/java/org/togetherjava/tjbot/features/reminder/RemindRoutine.java
Outdated
Show resolved
Hide resolved
application/src/main/java/org/togetherjava/tjbot/features/reminder/RemindRoutine.java
Outdated
Show resolved
Hide resolved
application/src/main/java/org/togetherjava/tjbot/features/reminder/RemindRoutine.java
Outdated
Show resolved
Hide resolved
application/src/main/java/org/togetherjava/tjbot/features/reminder/RemindRoutine.java
Outdated
Show resolved
Hide resolved
application/src/main/java/org/togetherjava/tjbot/features/reminder/RemindRoutine.java
Outdated
Show resolved
Hide resolved
application/src/main/java/org/togetherjava/tjbot/features/reminder/RemindRoutine.java
Outdated
Show resolved
Hide resolved
application/src/main/java/org/togetherjava/tjbot/features/reminder/RemindRoutine.java
Outdated
Show resolved
Hide resolved
@ankitsmt211 the issues are mostly related to your code style. u seem to have bypassed the pre-commit hook when u commited and by that skipped spotless. either setup ur pre-commit hooks or run |
application/src/main/java/org/togetherjava/tjbot/features/reminder/RemindRoutine.java
Outdated
Show resolved
Hide resolved
application/src/main/java/org/togetherjava/tjbot/features/reminder/RemindRoutine.java
Outdated
Show resolved
Hide resolved
application/src/main/java/org/togetherjava/tjbot/features/reminder/RemindRoutine.java
Outdated
Show resolved
Hide resolved
application/src/main/java/org/togetherjava/tjbot/features/reminder/RemindRoutine.java
Outdated
Show resolved
Hide resolved
application/src/main/java/org/togetherjava/tjbot/features/reminder/RemindRoutine.java
Outdated
Show resolved
Hide resolved
application/src/main/java/org/togetherjava/tjbot/features/reminder/RemindRoutine.java
Outdated
Show resolved
Hide resolved
application/src/main/java/org/togetherjava/tjbot/features/reminder/RemindRoutine.java
Outdated
Show resolved
Hide resolved
application/src/main/java/org/togetherjava/tjbot/features/reminder/RemindRoutine.java
Outdated
Show resolved
Hide resolved
Please don't run the checks yet, this still needs some work and i had to update the recent changes to my remote repo atm. |
* added Reminder record * added V13__Add_Reminder_failure_Attempts * modified RemindRoutine to handle failures Resolves: #722
application/src/main/java/org/togetherjava/tjbot/features/reminder/RemindRoutine.java
Outdated
Show resolved
Hide resolved
application/src/main/java/org/togetherjava/tjbot/features/reminder/RemindRoutine.java
Outdated
Show resolved
Hide resolved
application/src/main/java/org/togetherjava/tjbot/features/reminder/Reminder.java
Outdated
Show resolved
Hide resolved
application/src/main/resources/db/V13__Add_Reminder_Failure_attempts.sql
Outdated
Show resolved
Hide resolved
application/src/main/java/org/togetherjava/tjbot/features/reminder/RemindRoutine.java
Outdated
Show resolved
Hide resolved
application/src/main/java/org/togetherjava/tjbot/features/reminder/RemindRoutine.java
Outdated
Show resolved
Hide resolved
application/src/main/java/org/togetherjava/tjbot/features/reminder/RemindRoutine.java
Outdated
Show resolved
Hide resolved
application/src/main/java/org/togetherjava/tjbot/features/reminder/RemindRoutine.java
Outdated
Show resolved
Hide resolved
* adds column failure_attempts in PENDING_REMINDER * removes irrelevant testcase * modifies RemindRoutine to handle failures Resolves: #722
application/src/main/java/org/togetherjava/tjbot/features/reminder/RemindRoutine.java
Outdated
Show resolved
Hide resolved
application/src/main/java/org/togetherjava/tjbot/features/reminder/RemindRoutine.java
Outdated
Show resolved
Hide resolved
* add a column for failure attempts in PENDING_REMINDER * modify RemindRoutine to handle failure cases * removes an irrelevant test Resolves: #722
application/src/main/java/org/togetherjava/tjbot/features/reminder/RemindRoutine.java
Show resolved
Hide resolved
application/src/main/java/org/togetherjava/tjbot/features/reminder/RemindRoutine.java
Outdated
Show resolved
Hide resolved
* modify RemindRoutine to handle failure cases * Update PENDING_REMINDER to keep track of failure_attempts Resolves: #722
Added a file to alter
PENDING_REMINDER_TABLE
to add another columnREMINDER_FAILURE_COUNTER
which keeps track of attempts made when/reminder
fails.Also modified
RemindRoutine
class to handle failuresCloses and fixes #722