You've already introduced the lambda block with th...
# announcements
p
You've already introduced the lambda block with the first
{
. Adding a second will introduce a new lambda that never gets invoked. The below should work:
Copy code
disposables.add(service!!.assignDriverUsingLabel(vehicleLabel, Date().toString())
                        .observeOn(mainThread())
                        .subscribe({ response ->
                                       assignVehicle(response.body())
                                       println("Can do something else in here too")
                                   },
                                   {
                                       assignDriverUsingVin(vehicleLabel)
                                   }))