Skip to content
clojure logo

Clojure

Clojure is a functional, dynamic, general-purpose programming language. It provides built-in concurrency support via software transactional memory and asynchronous agents, and offers a rich set of immutable, persistent data structures. Clojure runs on JVM, JavaScript VMs, and Common Language Runtime.

Here are 3,542 public repositories matching this topic...

PatButlerTR
PatButlerTR commented Oct 9, 2019

Describe the bug
POST to /api/database will overwrite an existing database instead of erroring

To Reproduce
Create a database with a POST to /api/database.
Run the same call again.

Expected behavior
Expect Metabase to error and say, "Database with name 'foo' already exists"

Actual behavior
Metabase gives another 200 and will overwrite any previous database config with

ekkl
ekkl commented Jul 9, 2018
  1. Select theme with thick strip in line number block.
  2. Save and restart. Open some file. Нou see that the first characters of the lines are hidden under stripe.
  3. Open another file. All display properly.
  4. If you see carefully that the whole block with line numbers in the first case is shifted to the left.
    First file
    First file
RickMoynihan
RickMoynihan commented Sep 27, 2019

Evaling the form (throw (ex-info "foo" {})) with M-x cider-pprint-eval-last-sexp-to-comment yields the empty comment string:

;; =>

Arguably it should either:

  1. Not yield a ;; => at all (just the empty string) (and appropriate cider error buffer)

or it should:

  1. Print the error in the comment.

The later might be useful when describing code interactions and REPL s

PombeirP
PombeirP commented Dec 7, 2018

Problem

Currently when a user receives a PN, we show a very generic message (no indication of sender, body, etc). This will change in the future (e.g. with status-im/status-react#7043), so it would be good to be more explicit about the fact that we are showing a generic PN message due to the db being locked. Also, since we may receive PNs from users we've since removed

colinhicks
colinhicks commented Sep 29, 2016

Currently, changes to plugin information models need to be mirrored, manually in the respective README.md.

This proposal outlines a possible approach to:

  1. Generate the relevant portion of the README directly from the info model.
  2. Integrate into the existing plugin release process.

A: Create a doc-gen lein plugin to render an information-model map into markdown

  • Content should correspond
martinklepsch
martinklepsch commented Dec 22, 2017
Classpath conflict: org.clojure/clojure version 1.8.0 already loaded, NOT loading version 1.3.0

If you specify a Clojure version in boot.properties and don't specify the same Clojure version in your :dependencies you will get a warning like the one above.

Not sure if this is worth it but we could provide some more context for the specific case of Clojure:

Classpath confli
hlship
hlship commented Mar 21, 2017

Tracking down a problem with the latest upgrade. Because of a resolve failure, the arguments to a field are included in an error map; one value is a java.time.LocalDateTime. Cheshire throws an exception when streaming this as JSON, and the final result is a response with a body that is the empty string.

The right solution is to use cheshire.generator/add-encoder:

(add-encoder LocalDa
liberator
You can’t perform that action at this time.