John
12/16/2022, 11:17 AMwith Sender(host, port) as sender:
sender.row(
'price_test',
symbols={'store': '12345',
'product': 'Widget',
'prod_type': 'Item Only'},
columns={
'price': '6.75'
},
)
Nicolas Hourcard
12/16/2022, 11:18 AMJohn
12/16/2022, 11:21 AMNicolas Hourcard
12/16/2022, 11:22 AMJohn
12/16/2022, 11:23 AM'price': '6.75'
to 'price': 6.75
at pointed it at a new table and it created that column as a double. Float probably would have been fine.
I also tested the changed price code publishing to the original table but didn't get an error and the row didn't add. I thought that may have been caught by my:
except IngressError as e:
sys.stderr.write(f'Got error: {e}\n')
Bolek Ziobrowski
12/16/2022, 11:52 AMJohn
12/16/2022, 12:15 PMBolek Ziobrowski
12/16/2022, 12:21 PMJohn
12/16/2022, 12:33 PM