We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25e8e0f commit b7d2772Copy full SHA for b7d2772
src/puppetlabs/puppetdb/scf/partitioning.clj
@@ -1,6 +1,7 @@
1
(ns puppetlabs.puppetdb.scf.partitioning
2
"Handles all work related to database table partitioning"
3
(:require
4
+ [clojure.string :refer [lower-case]]
5
[puppetlabs.i18n.core :refer [trs]]
6
[puppetlabs.puppetdb.jdbc :as jdbc]
7
[schema.core :as s])
@@ -32,8 +33,8 @@
32
33
34
(defn date-suffix
35
[date]
- (let [formatter (.withZone (DateTimeFormatter/BASIC_ISO_DATE) (ZoneId/of "UTC"))]
36
- (.format date formatter)))
+ (let [formatter (.withZone DateTimeFormatter/BASIC_ISO_DATE (ZoneId/of "UTC"))]
37
+ (lower-case (.format date formatter))))
38
39
(defn to-zoned-date-time
40
0 commit comments