Skip to content

Commit

Permalink
Fixed running Plume from binary
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidBakerEffendi committed Mar 7, 2022
1 parent ed8c114 commit 51af989
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
/bin/
*.bin
*.gzip
*.xml

# Ignore Gradle GUI config
gradle-app.setting
Expand Down
3 changes: 2 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ inThisBuild(
organization := "com.github.plume-oss",
version := "1.0.17",
scalaVersion := "2.13.7",
crossScalaVersions := Seq("2.13.7", "3.1.0"),
crossScalaVersions := Seq("2.13.7", "3.1.1"),
resolvers ++= Seq(
Resolver.mavenLocal,
Resolver.mavenCentral,
Expand Down Expand Up @@ -56,6 +56,7 @@ libraryDependencies ++= Seq(
"org.scalaj" % "scalaj-http_2.13" % scalajHttpVersion,
"org.lz4" % "lz4-java" % lz4Version,
"org.slf4j" % "slf4j-api" % slf4jVersion,
"org.slf4j" % "slf4j-simple" % slf4jVersion % Runtime,
"org.scala-lang" % "scala-reflect" % scalaVersion.value,
"ch.qos.logback" % "logback-classic" % logbackVersion % Test,
"org.scalatest" %% "scalatest" % scalatestVersion % Test
Expand Down
3 changes: 2 additions & 1 deletion src/main/scala/com/github/plume/oss/Plume.scala
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ object Plume extends App {
username = conf.params.getOrElse("username", "tigergraph"),
password = conf.params.getOrElse("password", "tigergraph"),
timeout = conf.params.getOrElse("timeout", "3000").toInt,
txMax = conf.params.getOrElse("txMax", "25").toInt
txMax = conf.params.getOrElse("txMax", "25").toInt,
scheme = conf.params.getOrElse("scheme", "http")
)
case _ if conf.database == "Neptune" =>
new NeptuneDriver(
Expand Down

0 comments on commit 51af989

Please sign in to comment.