Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
Leonardo Menezes committed Dec 6, 2016
2 parents 2881349 + d423aa7 commit 093dbe9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/controllers/SnapshotsController.scala
Original file line number Diff line number Diff line change
@@ -40,7 +40,7 @@ class SnapshotsController extends BaseController {
def create = process { (request, client) =>
val repository = request.get("repository")
val snapshot = request.get("snapshot")
val indices = request.getAsStringArray("indices").map(_.mkString)
val indices = request.getAsStringArray("indices").map(_.mkString(","))
val ignoreUnavailable = request.getBoolean("ignoreUnavailable")
val includeGlobalState = request.getBoolean("includeGlobalState")
client.createSnapshot(repository, snapshot, ignoreUnavailable,

0 comments on commit 093dbe9

Please sign in to comment.