Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Helium DevClient giving "inStream" error

I am getting this error when trying to run the Helium DevClient

java -jar ~/ws/he-dev-client/HeliumDev-app-1.31.1-jar-with-dependencies.jar
Exception in thread "main" java.lang.NullPointerException: inStream parameter is null
	at java.base/java.util.Objects.requireNonNull(Objects.java:247)
	at java.base/java.util.Properties.load(Properties.java:407)
	at com.mezzanine.helium.ea.dev.App.main(App.java:178)

Any ideas as to what might cause this?

1
1
Posted 4 years ago
DevOps
84 × 2 Administrator
Votes Newest

Answers


This could be caused by several issues with the DevClient itself, although my testing with that version doesn't give any issue so I doubt it's that. It might be the java version you are using that is causing the problem. Helium needs to be run using Java 1.8 and would usually throw the same error if you are using a different version.

3
3
Posted 4 years ago
  
  

Ah yes thanks, I was using OpenJDK 14

DevOps   4 years ago Report
  
  

Was having the same issue. Using the correct version of Java fixed it. Thanks!

Chuck Norris   4 years ago Report
1
1

Okay, you could always just alias it with the right version of Java? something like alias he="/Library/Java/JavaVirtualMachines/adoptopenjdk-8.jdk/Contents/Home/jre/bin/java -jar ~/bin/HeliumDev-app-1.29.1-jar-with-dependencies.jar"

Charl Viljoen   4 years ago Report
180 Views
1 Answer
4 years ago
4 years ago
Tags