mike42780
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
Chris 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?jakobward
03/22/2023, 5:22 PMLeon Miller-Out
03/22/2023, 7:44 PMstatement_timeout
) in the connection string for my PostgreSQL database. I’ve added statement_timeout=30m
in the Connection String box in the datasource definition, but if I run the query SHOW statement_timeout
, it shows me a zero. Does anyone have experience with setting variables in PostgreSQL connection strings?Mark Berning
03/22/2023, 9:38 PMbdw429s
03/23/2023, 7:35 PMmalllory.woods
03/23/2023, 8:24 PMbrandner
03/27/2023, 5:18 PMPete Williamson
03/28/2023, 10:39 AMwget localhost
and wget localhost:8500
, the first one works, the 2nd one failsMark Takata (Adobe)
03/28/2023, 11:14 PMseancorfield
Mark Takata (Adobe)
03/31/2023, 10:42 PMAngel Chrystian
04/03/2023, 3:54 AMjava.lang.IllegalArgumentException: Invalid version number: Version number may be negative or greater than 255 at com.adobe.agl.util.VersionInfo.getInstance(VersionInfo.java:191) at com.adobe.agl.impl.ICUDebug.getInstanceLenient(ICUDebug.java:65) at com.adobe.agl.impl.ICUDebug.<clinit>(ICUDebug.java:69) at com.adobe.agl.text.BreakIterator.<clinit>(BreakIterator.java:207) at com.adobe.internal.afml.AFMLResultTree_WordCache$AFMLWordCacheLocaleGroupNode.<init>(AFMLResultTree_WordCache.java:354) at com.adobe.internal.afml.AFMLResultTree_WordCache$AFMLWordCacheLocaleGroupNode.<init>(AFMLResultTree_WordCache.java:334) at com.adobe.internal.afml.AFMLResultTree_WordCache.addLocaleToWordCache(AFMLResultTree_WordCache.java:82) at com.adobe.internal.afml.AFMLPlacementQueueEntry.preformatBlock(AFMLPlacementQueueEntry.java:1789) at com.adobe.internal.afml.AFMLPlacementQueueEntry.preformatFlowOrStaticContent(AFMLPlacementQueueEntry.java:504) at com.adobe.internal.afml.AFMLPlacementQueueEntry.<init>(AFMLPlacementQueueEntry.java:228) at com.adobe.internal.afml.AFMLPlacementQueue.<init>(AFMLPlacementQueue.java:88) at com.adobe.internal.afml.AFMLTree.internalFormatPageSequence(AFMLTree.java:1430) at com.adobe.internal.afml.AFMLTree.formatAll(AFMLTree.java:652) at com.adobe.internal.pdftoolkit.services.xfatext.FormatXFAText.internalProcessTextPanelSet(FormatXFAText.java:1542) at com.adobe.internal.pdftoolkit.services.xfatext.FormatXFAText.processXFAText(FormatXFAText.java:207) at com.adobe.internal.pdftoolkit.services.rcg.RichTextContentGenerator.generateXObject(RichTextContentGenerator.java:555) at coldfusion.pdf.PDFDocHandler.getXObjectToHF(PDFDocHandler.java:2999) at coldfusion.pdf.PDFDocHandler.addHF(PDFDocHandler.java:2917) at coldfusion.pdf.PDFDocHandler.addHFForDocument(PDFDocHandler.java:2952) at coldfusion.pdf.PDFServiceImpl.addHeaderFooter(PDFServiceImpl.java:236) at coldfusion.pdf.PDFServiceImpl.applyExtraAttributesForWebkit(PDFServiceImpl.java:167) at coldfusion.tagext.htmltopdf.HtmlToPdfTag.applyExtraAttributesForWebkit(HtmlToPdfTag.java:1351) at coldfusion.tagext.htmltopdf.HtmlToPdfTag.handlePDFgConversionRequest(HtmlToPdfTag.java:1316) at coldfusion.tagext.htmltopdf.HtmlToPdfTag.convertToPDF(HtmlToPdfTag.java:1236) at
mithlond
04/05/2023, 10:04 PMpm2
to Node restart processes if they die. Does CF just have a great big try/catch around the server itself that I've just never breached, or does it internally use something to quickly restart the process if it dies? Or is Node just shaky as all get-out and people are just firedog this is fine we'll just use pm2
and it's "good enough" that the stability issues have never been resolved like they have been for CF?Chris Tierney
04/06/2023, 6:35 PMBrian
04/07/2023, 3:07 PMmtbrown
04/07/2023, 8:04 PMevagoras
04/08/2023, 3:50 PMmtbrown
04/10/2023, 7:10 PMraymondcamden
04/11/2023, 2:20 PMraymondcamden
04/11/2023, 6:46 PMDave Merrill
04/11/2023, 7:15 PM