John Shaffer
John Shaffer
Documented at https://github.com/brettwooldridge/HikariCP#infrequently-used
Steps to reproduce: 1. Have Advanced Crawling Addon installed and activated 2. Uninstall the addon from WordPress 3. Attempt to crawl the site Result: WP2Static runs without errors, but nothing...
This will help detect and debug issues like #598.
Reagent version: 1.1.0 Repro: ```clojure (defn DocsBad [] (let [state (r/atom {:versions nil})] (fn [] (let [state* @state {:keys [versions]} @state version-entity-ids [1]] (when (not= versions version-entity-ids) (swap! state assoc...
The current parallel runner uses clojure.core/map with futures, which doesn't allow much control over execution. It is probably okay for unit tests, but it uses way too many threads for...
@DougBeney at #https://github.com/leonstafford/wp2static-addon-s3/issues/37#issuecomment-1152811649 > There is still one quirk that is not fixed for multisites. > > If you install the plugin and addons...then network activate for ALL sites on...
Currently, deleted pages remain on S3 unless the user manually removes them. We should detect 404'd pages and delete them from the bucket. Reported at https://staticword.press/t/deleted-pages-dont-disappear-from-s3/477
This was preventing CLJS from being able to catch the error and return a validation failure.
Expected: ```clojure (jinx/validate (jinx/schema {"type" "array" "uniqueItems" true}) []) ;= {:instance [], :annotations {}, :type "array", :valid? true} ``` Actual: ```clojure (jinx/validate (jinx/schema {"type" "array" "uniqueItems" true}) []) Execution error...