We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I put array in yml file and it works just fine on my local test machine.
ad_sequence1: [z,z,z,z,z,z,z,z,z,z] ad_sequence2: ["z","z","z","z","z","z","z","z","z","z"]
but if I deploy the code on heroku, in a sudden it is recognized as string as below:
["z,z,z,z,z,z,z,z,z,z"] or '["z","z","z","z","z","z","z","z","z","z"]'
Can someone please enlighten me?
The text was updated successfully, but these errors were encountered:
I solved this problem by assigning ad_sequence as below:
ad_sequence: - z - z - z - z - z - z - z - z - z - z
Sorry, something went wrong.
No branches or pull requests
Hi,
I put array in yml file and it works just fine on my local test machine.
ad_sequence1: [z,z,z,z,z,z,z,z,z,z]
ad_sequence2: ["z","z","z","z","z","z","z","z","z","z"]
but if I deploy the code on heroku, in a sudden it is recognized as string as below:
["z,z,z,z,z,z,z,z,z,z"]
or
'["z","z","z","z","z","z","z","z","z","z"]'
Can someone please enlighten me?
The text was updated successfully, but these errors were encountered: