tracker issue : CF-4203179

select a category, or use search below
(searches all categories and all time range)
Title:

Async does not work on Japanese ver.

| View in Tracker

Status/Resolution/Reason: Closed/Fixed/Fixed

Reporter/Name(from Bugbase): Shigeyoshi Muraoka / ()

Created: 08/01/2018

Components: Language, Asynchronous Programming, Localization

Versions: 2018

Failure Type: Others

Found In Build/Fixed In Build: 2018.0.0.310739 / 313145

Priority/Frequency: Normal /

Locale/System: Japanese / Win 2012 Server x64

Vote Count: 0

Problem Description:
On ColdFusion2018 for Japanese version, an error occurs when executing async program mentioned on the following site.

https://helpx.adobe.com/coldfusion/cfml-reference/coldfusion-functions/functions-m-r/runasync.html

Steps to Reproduce:
<cfscript>
             //To run a function asynchronously and get the result
             future = runAsync(function(){
                           return "Hello World!";
                      });
             result = future;
             writeOutput(result.get());
</cfscript>

Actual Result:
d != java.lang.String (See async_error1.jpg)

Expected Result:
Hello World!


Including error in runAsync results in a Null Pointers error. (See async_error2.jpg)

Moreover, the same error occurs on ColdFusion2018 for International English version when changing -Duser.language=en on jvm.config to -Duser.language=ja.

Attachments:

Comments: