在Linux上未运行RabbitMQ,找不到文件asn1.app

时间:2018-06-23 01:34:30

标签: centos rabbitmq erlang

我曾经成功地安装在CentO上。但是,这是我使用的另一个CentO,它无法凝视RabbitMq。

我的erlang来自这里。

B

这是我的erl_crash.dump。

// Code for showing alert
let locationPicker = UIAlertController(title: "Select location", message: nil, preferredStyle: .actionSheet)
for location in RestaurantListViewController.locations {
  locationPicker.addAction(UIAlertAction(title: location, style: .default) { [weak self] action in
    guard let `self` = self else { return }
    self.currentLocation = action.title
    self.tableView.reloadData()
  })
}
let cancelAction = UIAlertAction(title: "Cancel", style: .cancel, handler: nil)
locationPicker.addAction(cancelAction)
present(locationPicker, animated: true)

如何识别此问题?谢谢。

0 个答案:

没有答案