This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14:14:36.104 [biz-query-actor-system-akka.actor.default-dispatcher-2] DEBUG s.can.server.HttpServerConnection - Dispatching POST request to http://localhost:9080/v1/lead-events/query to handler Actor[akka://biz-query-actor-system/system/IO-TCP/selectors/$a/1#-407128859] | |
14:14:36.107 [Logging-akka.actor.default-dispatcher-4] INFO c.l.biz.query.web.route.QueryRoute - route=/v1/lead-events/query, account_id=4DB99601-90C0-4A88-973C-13220A5313A2, request=ParsedLeadQueryRequest_v1(a4bd9ac4-cb91-5c7b-1771-fd09625a85ac,None,4db99601-90c0-4a88-973c-13220a5313a2,None,None,None,None,Set(lead_hour, lead_five_minutes, lead_twelve_hours, fields_changed, lead_week, lead_day)) | |
14:14:36.108 [biz-query-actor-system-akka.actor.default-dispatcher-3] INFO c.l.b.q.c.CoreActors$$anonfun$2$$anon$1 - [d0c892cc788c87e4] LeadQueryRequest(a4bd9ac4-cb91-5c7b-1771-fd09625a85ac,None,4db99601-90c0-4a88-973c-13220a5313a2,None,None,None,None,com.leadid.biz.query.domain.HttpEntity$$anon$1@69c0a74f,Set(lead_hour, lead_five_minutes, lead_twelv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
warn] /Users/dandeming/git/leaf/leaf-common/src/main/scala/com/leadid/util/expression/UtilityFunctions.scala:32: comparing values of types Double and Null using `!=' will always yield true | |
[warn] final def equals(a: Double, b: String): Boolean = a != null && equals(new BigDecimal(a), b) | |
[warn] ^ | |
[warn] /Users/dandeming/git/leaf/leaf-common/src/main/scala/com/leadid/util/expression/UtilityFunctions.scala:38: comparing values of types Double and Null using `!=' will always yield true | |
[warn] final def isGreaterThan(a: Double, b: String): Boolean = a != null && isGreaterThan(new BigDecimal(a), b) | |
[warn] ^ | |
[warn] /Users/dandeming/git/leaf/leaf-common/src/main/scala/com/leadid/util/expression/UtilityFunctions.scala:44: comparing values of types Double and Null using `!=' will always yield true | |
[warn] final def isGreaterThanOrEqualTo(a: Double, b: String): Boolean = a != null && isGreaterThanOrEqu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$iniSet = function_exists('ini_set'); | |
**SNIP** | |
switch (Configure::read('Session.save')) { | |
case 'cake': | |
if (empty($_SESSION)) { | |
if ($iniSet) { | |
ini_set('session.use_trans_sid', 0); | |
ini_set('url_rewriter.tags', ''); | |
ini_set('session.serialize_handler', 'php'); |