Skip to content

Commit

Permalink
Fixed missing resources bug for the mssql pod (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
kbosompem authored Jun 15, 2023
1 parent 2b73a9d commit 0b4301d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .clj-kondo/com.github.seancorfield/next.jdbc/config.edn
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{:hooks
{:analyze-call
{next.jdbc/with-transaction
hooks.com.github.seancorfield.next-jdbc/with-transaction}}}
hooks.com.github.seancorfield.next-jdbc/with-transaction}}
:lint-as {next.jdbc/on-connection clojure.core/with-open}}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@
/.lsp/.cache
.nrepl-port
.lsp
output.calva-repl
2 changes: 1 addition & 1 deletion resources/POD_BABASHKA_SQL_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.1
0.1.2
2 changes: 1 addition & 1 deletion script/compile.clj
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
"--initialize-at-run-time=com.microsoft.sqlserver.jdbc.SQLServerBouncyCastleLoader"
"--initialize-at-run-time=com.microsoft.sqlserver.jdbc.SQLServerMSAL4JUtils"
xmx]
args (if (= "mysql" pod-db-type)
args (if (= "mssql" pod-db-type)
(conj args "-H:IncludeResourceBundles=com.microsoft.sqlserver.jdbc.SQLServerResource")
args)
args (if (= "true" (System/getenv "BABASHKA_STATIC"))
Expand Down

0 comments on commit 0b4301d

Please sign in to comment.