Skip to content

Commit

Permalink
Merge pull request #1 from mcroydon/master
Browse files Browse the repository at this point in the history
Build and example fixes
  • Loading branch information
cheddar committed Oct 24, 2012
2 parents 631c3bf + 9575326 commit c8f549f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,5 @@ target
client/.settings/org.eclipse.jdt.core.prefs
common/.settings/org.eclipse.jdt.core.prefs
server/.settings/org.eclipse.jdt.core.prefs
examples/rand/RealtimeNode.out
examples/twitter/RealtimeNode.out
2 changes: 1 addition & 1 deletion examples/rand/run_client.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
echo " commandline query to RealtimeStandaloneMain service using curl"
echo " before running this, do: run_server.sh &"
echo " before running this, do: run_server.sh"

set +u
shopt -s xpg_echo
Expand Down
2 changes: 1 addition & 1 deletion examples/rand/run_server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ echo "cleaning up previous run, if any"

# start RealtimeNode process
#
java -Xmx400m -Duser.timezone=UTC -Dfile.encoding=UTF-8 -classpath target/druid-examples-rand-2.5.72-SNAPSHOT-selfcontained.jar druid.examples.RealtimeStandaloneMain >RealtimeNode.out 2>&1 &
java -Xmx400m -Duser.timezone=UTC -Dfile.encoding=UTF-8 -classpath target/druid-examples-rand-*-selfcontained.jar druid.examples.RealtimeStandaloneMain >RealtimeNode.out 2>&1 &
PID=$!

trap "kill $PID" 1 2 3 15
Expand Down
2 changes: 1 addition & 1 deletion examples/twitter/run_client.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
echo " commandline query to RealtimeStandaloneMain service using curl"
echo " before running this, do: run_server.sh &"
echo " before running this, do: run_server.sh"

set +u
shopt -s xpg_echo
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@
import com.metamx.druid.kv.VSizeIndexedWriter;
import com.metamx.druid.utils.JodaUtils;
import com.metamx.druid.utils.SerializerUtils;
import com.sun.tools.javac.resources.version;
import it.uniroma3.mat.extendedset.intset.ConciseSet;
import it.uniroma3.mat.extendedset.intset.ImmutableConciseSet;
import org.apache.commons.io.FileUtils;
Expand Down

0 comments on commit c8f549f

Please sign in to comment.