the cause of the error is the use of SpreadOperator (*).
runApplication<MessCallsApplication>(*args)
you can solve this by getting rid of the SpreadOperator and using joinToString
joinToString
runApplication<MessCallsApplication>(args.joinToString())