I have been using Alamofire in my whole project. Now in one of my modules, the Alamofire.request() is not getting executed. I tried putting a breakpoint and it showed that all of a sudden the request is being skipped. As I am working on a live project for security purpose am not including the URL. The code which I used is given here.
func responseFunction() {
    let url = ""
    let parametervalue = ["enq_id" : self.enquiry_id]
    print(self.enquiry_id)
    Alamofire.request(url, method: .post, parameters: parametervalue).responseJSON(completionHandler: {response in
       if let response_data = response.result.value as? NSDictionary{
         let rdata = response_data.value(forKey: "response") as! String
         if rdata == "Success"
         {
            let res_data = response_data.value(forKey: "result") as! [NSDictionary]
            print(res_data)
            for resultdata in res_data{
                let enqid = resultdata.value(forKey: "enq_id") as! String
                let userid = resultdata.value(forKey: "user_id") as! String
                let reference_no = resultdata.value(forKey: "reference_no") as! String
                let enq_date = resultdata.value(forKey: "enq_date") as! String
                let enq_time1 = resultdata.value(forKey: "enq_time") as! String
                let enq_time2 = enq_time1.replacingOccurrences(of: "+", with: " ")
                let enq_time = enq_time2.replacingOccurrences(of: "%3A", with: " : ")
            }
             self.queryResponseTable.reloadData()
         }
         else{
            let alertController = UIAlertController(title: "Response Details", message: "Server Error ! Could not get any response. Please try again later!", preferredStyle: .alert)
            alertController.addAction(UIAlertAction(title: "Dismiss", style: .default))
            self.present(alertController, animated: true, completion: nil)
         }
     }
    })
}
Can anyone help me out?
 
     
    