File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -4,8 +4,9 @@ All notable changes to this project are documented in this file. This change log
4
4
## [ Unreleased]
5
5
6
6
### Fixed
7
- - Internal: Fixed possible test failures in non-UTC timezones.
8
- - Internal: Fixed graceful shutdown test.
7
+ - Fix ` queue/initialize! ` that fails to create MySQL tables due to index conflict.
8
+ - Internal: Fix possible test failures in non-UTC timezones.
9
+ - Internal: Fix graceful shutdown test.
9
10
10
11
### Changed
11
12
- Use JVM time when querying for pending jobs instead of relying on UTC.
Original file line number Diff line number Diff line change 304
304
(defn initialize!
305
305
" Create required MySQL tables if they don't exist. Returns true."
306
306
[db-conn]
307
- (queries/create-jobs! db-conn)
308
307
(queries/create-scheduled-jobs! db-conn)
308
+ (queries/create-jobs! db-conn)
309
309
true )
310
310
311
311
(defn schedule-job
Original file line number Diff line number Diff line change 17
17
18
18
(defn setup-db
19
19
[f]
20
- (queries/create-scheduled-jobs! db-conn)
21
- (queries/create-jobs! db-conn)
20
+ (initialize! db-conn)
22
21
(f ))
23
22
24
23
(defn clean-up
You can’t perform that action at this time.
0 commit comments