Skip to content

Commit

Permalink
Add the very important RELOAD! to statistics output
Browse files Browse the repository at this point in the history
  • Loading branch information
Zomis committed Dec 15, 2019
1 parent 471d875 commit 28ee7d0
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -73,7 +73,7 @@ class StatisticsTask(private val rooms: String) : DugaTask {

private fun statsMessages(): List<String> {
val scan = dynamoDB.scan(ScanRequest(tableName))
return scan.items.map(this::itemToMessage)
return listOf("***RELOAD!***").plus(scan.items.map(this::itemToMessage))
}

private fun prettyPrintKey(key: String): String {
Expand Down

0 comments on commit 28ee7d0

Please sign in to comment.