Skip to content

Commit

Permalink
Merge pull request #6 from wildbit/java-8-support
Browse files Browse the repository at this point in the history
Introduce Java 8 support.
  • Loading branch information
temochka authored Sep 10, 2016
2 parents 46b00fe + e6fe170 commit 5f310d7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ services:
jdk:
- openjdk7
- oraclejdk7
- oraclejdk8
script: "lein2 test-all"
before_script: "echo 'CREATE DATABASE IF NOT EXISTS clj_mysql_queue;' | mysql -uroot"
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ All notable changes to this project are documented in this file. This change log

### Changed
- Use JVM time when querying for pending jobs instead of relying on UTC.
- Verify the library works properly on Java 8.

2 changes: 1 addition & 1 deletion test/mysql_queue/core_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
[mysql-queue.queries :as queries]))

(def db-conn {:subprotocol "mysql"
:subname "//localhost:3306/clj_mysql_queue"
:subname "//localhost:3306/clj_mysql_queue?useSSL=false"
:user "root"
:password ""})

Expand Down

0 comments on commit 5f310d7

Please sign in to comment.