I want to set the string include line feed code to envinronment variables. So, I set the following app.yaml.
env_variables:
PARAM1: "aaa\nbbb"
In my local env (Mac OSX), appengine golang application get the collect data.
aaa
bbb
But, I uploaded to Standard GAE environment, application get only "aaa".
Should I do any other settings?