func raftFutureErrorCheck(future raft.ApplyFuture) {
	if err := future.Error(); err != nil {
		fmt.Printf("Apply Error 1: %v\n", err)
	}

	if !future.Response().(bool) {
		fmt.Printf("Apply Error 2:\n")
	}
}