jc
03/08/2023, 5:15 PMfireInstanceID
returned in the handler functions ( I could not find any ). At the moment I am using bigint
to store it as int
was too small, but I wanted to confirm this was safe to continue to use as I am using the event handler to keep a log of task execution, completions and errors if any.Tim
03/09/2023, 3:56 PMMark Takata (Adobe)
03/09/2023, 4:59 PMjakobward
03/11/2023, 12:08 AMMark Berning
03/13/2023, 1:51 PM{
"status": 500,
"error": "None",
"message": "I/O error on POST request for \"<http://cf2021.cffiddle.org:8500/cffiddle/c85fa036-5a93-423a-b748-4f0852e91d64/b0faac60-e774-4e5c-aff0-ce794e966d29/tmp_9c697291-50c9-4fad-b3ff-8dc1e0db29b8.cfm?__fiddlecall=true&__sandbox=c85fa036-5a93-423a-b748-4f0852e91d64&__appid=b0faac60-e774-4e5c-aff0-ce794e966d29>\": Connect to <http://cf2021.cffiddle.org:8500|cf2021.cffiddle.org:8500> [<http://cf2021.cffiddle.org/10.0.0.4|cf2021.cffiddle.org/10.0.0.4>] failed: Connection refused (Connection refused); nested exception is org.apache.http.conn.HttpHostConnectException: Connect to <http://cf2021.cffiddle.org:8500|cf2021.cffiddle.org:8500> [<http://cf2021.cffiddle.org/10.0.0.4|cf2021.cffiddle.org/10.0.0.4>] failed: Connection refused (Connection refused)",
"timeStamp": 1678715421916,
"path": null
}
Mark Takata (Adobe)
03/14/2023, 3:47 PMseancorfield
03/15/2023, 5:21 AMcreateObject()
? I think Lucee has a more integrated syntax but I can't remember whether the tickets requesting better syntax in ACF ever happened?salted
03/15/2023, 9:51 AMsalted
03/15/2023, 10:03 AMIn this release, we’ve addressed some security vulnerabilities and added the following jvm flags to that effect.
-Dcoldfusion.cfclient.enable=true/false
-Dcoldfusion.cfclient.allowNonCfc=true/false
salted
03/15/2023, 10:03 AMsalted
03/15/2023, 10:04 AMsalted
03/15/2023, 10:05 AMsaghosh
03/15/2023, 10:12 AMsaghosh
03/15/2023, 10:13 AMsalted
03/15/2023, 10:14 AMrstewart
03/17/2023, 12:46 PMLeon Miller-Out
03/17/2023, 3:14 PMLeon Miller-Out
03/17/2023, 3:44 PMJim Priest
03/17/2023, 5:59 PMemmet
03/17/2023, 10:42 PMmike42780
03/20/2023, 2:48 AMsalted
03/20/2023, 11:31 AMsalted
03/20/2023, 11:31 AMMichael Miller
03/20/2023, 2:39 PMsalted
03/21/2023, 10:01 AMJust looking for a bit of clarification on generatebcrypthash and whether it tacks on a salt itself or I should do so before hashing?Anyone Adobe seen this and have an answer or a pointer to docs for me?
Chris Tierney
03/21/2023, 5:01 PMlocal.varA = local.get_varB.reduce( (val, row) => {
val.append(row);
return val;
}, [] );
returns ...$func_CF_ANONYMOUSCLOSURE_413 in the try/catch cause message.
by switching the arrow operator to a function, the code starts working.
The "regressed" code fix below works:
local.varA = local.get_varB.reduce( function(val, row) {
val.append(row);
return val;
}, [] );
I am planning on reporting this to Adobe (@sandip_halder) but wanted to see if anyone had any input on this or have hear the same?aliaspooryorik
03/21/2023, 5:03 PMChris Tierney
03/21/2023, 5:11 PMbdw429s
03/21/2023, 7:41 PMsendGatewayMessage()
BIF and register a gateway listener to respond to incoming messages with SQS as the backend. It would especially solve the issue of creating a listener, which ATM would require you to build your own CFThread plumbing with long polling enabled for a queue, but all of this could be abstracted perfectly into an event gateways listener that simply response to new messages like the existing ActiveMQ one does.rstewart
03/21/2023, 8:03 PMcfusion/lib/cf-logging.jar
. Thoughts on how best to respond?rstewart
03/21/2023, 8:03 PMcfusion/lib/cf-logging.jar
. Thoughts on how best to respond?sandip_halder
03/21/2023, 8:29 PMrstewart
03/21/2023, 8:34 PMAdam Cameron
03/21/2023, 9:29 PMjclausen
03/21/2023, 10:35 PMAdam Cameron
03/21/2023, 10:36 PMjclausen
03/21/2023, 10:36 PMAdam Cameron
03/21/2023, 10:36 PMjclausen
03/21/2023, 10:37 PM