Skip to content

Commit

Permalink
fix compaction
Browse files Browse the repository at this point in the history
  • Loading branch information
BalduinLandolt committed Apr 10, 2024
1 parent 0536f24 commit 76a0bb4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -334,8 +334,8 @@ case class TriplestoreServiceLive(
}

override def compact(): Task[Unit] = {
val request = new HttpPost("/$/compact" + fusekiConfig.repositoryName)
doHttpRequest(request, _ => ZIO.unit).unit
val request = new HttpPost("/$/compact/" + fusekiConfig.repositoryName)
doHttpRequest(request, x => ZIO.succeed(x)).tap(x => ZIO.logDebug(s"Compaction Response: $x")).logError.unit
}

/**
Expand Down

0 comments on commit 76a0bb4

Please sign in to comment.