prebid / line-item-manager

Prebid Line Item Management Tool
Other
30 stars 17 forks source link

Geo Location Targeting Error #154

Closed soman closed 9 months ago

soman commented 9 months ago

Description

I am getting errors related to geolocation targeting. I've attached two screenshots.

What I Did

line_item_manager create -n test_config.yml --single-order
![lim-error-1](https://github.com/prebid/line-item-manager/assets/2465685/23c552de-f440-4c6b-bcf3-29ebc0bc3dbe)
![lim-error-2](https://github.com/prebid/line-item-manager/assets/2465685/04ae392c-511e-4b53-8d83-8974288a9099)
dshore commented 9 months ago

@soman Looks like you are missing a hyphen in front of name that would indicate in yaml that the custom block is an array: You want this:

  custom: # list (optional)
    - name: "country"

Not what I think you have as this:

  custom: # list (optional)
    name: "country"