ddorian
ddorian
This only happens when webhooks have no "tags". Whey they have tags, they collapse/expand correctly.
@eladshamai - What version of yugabytedb are you using? - What version of PostgreSQL? - Did you set any custom configuration?
@eladshamai Is it possible to get more info on how to replicate it? Maybe a small script? I'm trying to replicate but cannot.
> Try the example I wrote below the description. I did. > If you find it hard to replicate, try executing those lines as fast as possible. Please explain how...
And if it doesn't fail? Do you just truncate and try again?
Please write in pseudocode or something cause just showing a screenshot when the error happens doesn't help.
@eladshamai See this python script that doesn't error for me. Can you make it fail?: ```python def db_error_check(): import psycopg2 # Create the database connection. connString = "host=127.0.1.1 port=5433 dbname=yugabyte...
Smaller script: ```python def db_error_check(): import psycopg2 # Create the database connection. # yugabyte connString = "host=127.0.1.1 port=5433 dbname=yugabyte user=yugabyte password=yugabyte" # postgresql # connString = "host=127.0.0.1 port=5432 dbname=yugabyte user=postgres...
@eladshamai the bug has been identified and is being worked on.
> I mark this test to be skipped because I only wish to run this test occasionally to test my integration with said external API. Maybe you can use pytest-recording...