Setting timeout

Hi. For the SQL call, the Rockset docs say that I can specify a timeout in sec. But when I do this:

conn.sql(Q(stmt),settings.ROCKSET_STMT_TIMEOUT)

I get an invalid number of arguments error.

Can you give me an example of the a proper python SQL call that specifies a timeout? Thanks!

HI @ashkevk1 -

it should look like
conn.sql(Q(stmt), timeout=5)

–n