Jeff Simpson

Results 22 comments of Jeff Simpson

Ah, interesting. Ok, I'll keep poking at it. Thanks!

I re-ran metabase with the following command: ```CLASSPATH=`find ~/.m2 -name "datomic-pro*.jar" -print -quit` java -jar metabase.jar``` Still seeing the same classpath issue. The result of the find command is: ```...

I am using a pretty new version of the pro jar, maybe an older one would have the correct function? i.e. I'll try `0.9.5697` and see if it matches the...

I reverted the change to `deps.edn` and tried using `0.9.5561.62`, but still hitting the issue. I was using the following command: `CLASSPATH=/home/jsimpson/.m2/repository/com/datomic/datomic-pro/0.9.5561.62/datomic-pro-0.9.5561.62.jar java -jar metabase.jar` The plugin was rebuilt with...

Maybe this is useful, but the uberjar seems to have the datomic classes baked, so maybe there's some other classloader issue going on? ``` $jar tvf /home/jsimpson/Downloads/metabase-datomic/target/uberjar/datomic.metabase-driver.jar | grep "ddb_cluster"...

Curious if this was ever implemented? I have a pesky Python server returning NaN and need to deal with it :)

A little more info. In the sbt console I get some interesting behavior. If my case class has a second parameter of type Int I get the WriteLike implicit error....

> I've got exactly the same problem. > > Maybe that has to do with the policy.set_resource_handling_mode("files") ? Yep I'm having the same issue. Setting to "classify" does include my...

> ```diff > spawn_module.getattr("spawn_main")?.call((), Some(kwargs))?; > ``` This is awesome. I forked and gave this a try and am able to do what I wanted to do with multiprocessing spawn...