Cursor doesn't support config property
See original GitHub issueHey @laughingman7743!
First of all thank you for such a good tool to work with Athena.
Now o would like to come back to the problem.
When i am trying to pass ‘config’ property for boto3.client
as element of kwargs
pyathena.connect(s3_staging_dir=env['athena_staging_dir'], region_name=env['region'], config=env['config'])
, it fails because Session constructor unpack kwargs parameter and there is no ‘config’ argument. So it couldn’t reach boto3.client in connection.py
.
Could we fix this problem by using _get_default_session
as it is implemented in boto3? Or we could add some properties to constructor in connection.py
, because now we can’t use any of kwargs which are optional in boto3.client
Issue Analytics
- State:
- Created 5 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
No mouse cursor during an OSD task sequence
This article fixes an issue in which no mouse cursor appears during a Configuration Manager OS deployment (OSD) task sequence.
Read more >Setting Cursor property has no effect - Stack Overflow
Try to use the static property of the cursor class instead of using this.Cursor : Cursor.Current = Cursors.WaitCursor;.
Read more >cursor - CSS: Cascading Style Sheets - MDN Web Docs
The cursor CSS property sets the mouse cursor, if any, to show when the mouse pointer is over an element.
Read more >Change the Mouse Cursor in CSS With the cursor Property
A reference for the CSS cursor property and the different cursors available by default. You'll also see how to define your own cursors....
Read more >cursor - CSS-Tricks
The cursor property in CSS controls what the mouse cursor will look ... This browser support data is from Caniuse, which has more...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Great! It works!
Thank you!
P.S. Sorry for ignore, i was rly busy… Nevertheless you do a lot of work. Thank you for that.
I fixed it. Please check the following branches. https://github.com/laughingman7743/PyAthena/pull/66