-
Notifications
You must be signed in to change notification settings - Fork 84
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Clojure 1.5.1 Compatible #9
Comments
Can you share your project.clj or an example project.clj that I can run? |
A sample project.clj and core.clj to reproduce this (defproject bug "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.5.1"]
[yieldbot/flambo "0.3.2"]
[org.apache.spark/spark-core_2.10 "1.0.2" :scope "provided"
:exclusions [org.eclipse.jetty.orbit/javax.servlet]]
[org.apache.spark/spark-sql_2.10 "1.0.2" :scope "provided"]]) (ns bug.core
(:require [flambo.api :as f]))
(defn foo
[rdd]
(f/map (f/fn [x] (str x)) rdd)) Running |
Thanks @sorenmacbeth. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I am not sure if this is due to my config, but I get following error when forms containing flambo api (mainly
f/fn
) are aot compiled with clojure 1.5.1. Doinglein check
is enough to reproduce this in my case.I think it has something to do with http://dev.clojure.org/jira/browse/CLJ-1363. Could you please check this?
The text was updated successfully, but these errors were encountered: