8000 Fix logger statement in User.add by rmagier1 · Pull Request #608 · tableau/server-client-python · GitHub
[go: up one dir, main page]

Skip to content

Fix logger statement in User.add #608

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 1, 2020
Merged

Conversation

rmagier1
Copy link
Contributor
@rmagier1 rmagier1 commented Apr 28, 2020

The logger statement is using the parameter to output the id of the user, but that isnt set until line 67 and saved to a new variable. We want the logger statement to use that new user because it currently always prints None.

Issue link #609

The logger statement is using the parameter to output the id of the user, but that isnt set until line 67 and saved to a new variable. We want the logger statement to use that new user
Copy link
@msummers42 msummers42 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This corrects a clear error.

@shinchris
Copy link
Contributor

Thanks for the PR @rmagier1!
Before we merge in the change, could you sign our Contributor License Agreement?

@graysonarts
Copy link
Contributor

CLA Received

@shinchris shinchris merged commit 977b3d9 into tableau:master May 1, 2020
@shinchris shinchris mentioned this pull request May 1, 2020
shinchris pushed a commit that referenced this pull request May 1, 2020
* delete docs folder from master (#520)

* delete folder

* add back readme for docs

* Fix logger statement in User.add (#608)

The logger statement is using the parameter to output the id of the user, but that isnt set until line 67 and saved to a new variable. We want the logger statement to use that new user

* Updates changelog and contributors for v0.11 release

Co-authored-by: Jac <jacalata@users.noreply.github.com>
Co-authored-by: Reba Magier <rebeccam@syapse.com>
shinchris pushed a commit that referenced this pull request May 1, 2020
Merge development into master for v0.11 release

v0.11 (1 May 2020)

-Added more fields to Data Acceleration config (#588)
-Added OpenID as an auth setting enum (#610)
-Added support for Data Acceleration Reports (#596)
-Added support for view permissions (#526)
-Materialized views changed to Data Acceleration (#576)
-Improved consistency across workbook/datasource endpoints (#570)
-Fixed print error in update_connection.py (#602)
-Fixed log error in add user endpoint (#608)
10000
shinchris pushed a commit that referenced this pull request May 1, 2020
* delete docs folder from master (#520)

* delete folder

* add back readme for docs

* Fix logger statement in User.add (#608)

The logger statement is using the parameter to output the id of the user, but that isnt set until line 67 and saved to a new variable. We want the logger statement to use that new user

Co-authored-by: Jac <jacalata@users.noreply.github.com>
Co-authored-by: Reba Magier <rebeccam@syapse.com>
shinchris pushed a commit that referenced this pull request May 4, 2020
* delete docs folder from master (#520)

* delete folder

* add back readme for docs

* Fix logger statement in User.add (#608)

The logger statement is using the parameter to output the id of the user, but that isnt set until line 67 and saved to a new variable. We want the logger statement to use that new user

* Adds hidden views parameter to workbook publish

* Pycodestyle

Co-authored-by: Chris Shin <cshin@tableau.com>
Co-authored-by: Jac <jacalata@users.noreply.github.com>
Co-authored-by: Reba Magier <rebeccam@syapse.com>
t8y8 pushed a commit that referenced this pull request May 13, 2020
* delete docs folder from master (#520)

* delete folder

* add back readme for docs

* Fix logger statement in User.add (#608)

The logger statement is using the parameter to output the id of the user, but that isnt set until line 67 and saved to a new variable. We want the logger statement to use that new user

* Cleans up imports and fixes some errors along the way

* pycodestyle fix for single char var name

Co-authored-by: Chris Shin <cshin@tableau.com>
Co-authored-by: Jac <jacalata@users.noreply.github.com>
Co-authored-by: Reba Magier <rebeccam@syapse.com>
gaoang2148 pushed a commit that referenced this pull request Jul 10, 2020
* delete docs folder from master (#520)

* delete folder

* add back readme for docs

* Fix logger statement in User.add (#608)

The logger statement is using the parameter to output the id of the user, but that isnt set until line 67 and saved to a new variable. We want the logger statement to use that new user

* Prepares v0.12 release

* Fixes typo in changelog

Co-authored-by: Jac <jacalata@users.noreply.github.com>
Co-authored-by: Reba Magier <rebeccam@syapse.com>
gaoang2148 pushed a commit that referenced this pull request Jul 10, 2020
* Sync development with master branch (#613)

* delete docs folder from master (#520)

* delete folder

* add back readme for docs

* Fix logger statement in User.add (#608)

The logger statement is using the parameter to output the id of the user, but that isnt set until line 67 and saved to a new variable. We want the logger statement to use that new user

Co-authored-by: Jac <jacalata@users.noreply.github.com>
Co-authored-by: Reba Magier <rebeccam@syapse.com>

* Adds hidden_views parameter to publish() (#614)

* delete docs folder from master (#520)

* delete folder

* add back readme for docs

* Fix logger statement in User.add (#608)

The logger statement is using the parameter to output the id of the user, but that isnt set until line 67 and saved to a new variable. We want the logger statement to use that new user

* Adds hidden views parameter to workbook publish

* Pycodestyle

Co-authored-by: Chris Shin <cshin@tableau.com>
Co-authored-by: Jac <jacalata@users.noreply.github.com>
Co-authored-by: Reba Magier <rebeccam@syapse.com>

* Code cleanup (#618)

* delete docs folder from master (#520)

* delete folder

* add back readme for docs

* Fix logger statement in User.add (#608)

The logger statement is using the parameter to output the id of the user, but that isnt set until line 67 and saved to a new variable. We want the logger statement to use that new user

* Cleans up imports and fixes some errors along the way

* pycodestyle fix for single char var name

Co-authored-by: Chris Shin <cshin@tableau.com>
Co-authored-by: Jac <jacalata@users.noreply.github.com>
Co-authored-by: Reba Magier <rebeccam@syapse.com>

* update comment to say Python 3.5 is required to run samples (#619)

* update comment to say Python 3.5 is required to run samples

* pycodestyle fix for single char var name

* Simple Paging Endpoint for GraphQL/Metadata API (#623)

Because GraphQL can be arbitrarily complex and nested, we can't get as smart with an automatic Pager object without parsing the query, and that's a can of worms.

So for now, I added a new endpoint that will take a single query with one set of pagination parameters and run through it until it ends. It's not very smart, but it works.

* Support Metadata Services Backfill & Eventing APIs (#626)

Simple JSON endpoints that return the status of Metadata Services related events.

* Adds in maxage param to csv and pdf export options (#635)

* Adds in maxage param to csv and pdf export options

* Fixes style issue

* Adding named param to test to be clear

* User favorites endpoint (#638)

* Create FavoriteRequest factory

* Create favorites_endpoint

* Enable addition of favorites

* Enabled deletion of favorites

* Fix XML response calls

* Genericize descriptor

* Fix typo

* Remove outdated content

* Use more descriptive variable names

* Adjust API version

* Create Favorite "enum"

* Factor response parsing logic to model

The favorites item is now a dictionary.
The user_item has been altered to reflect this.

* Test favorites.get

* Test adding a favorite workbook

* Test adding favorite view

* Test adding favorite data source

* Test adding favorite project

* Test favorite deletion

* Expand favorites test_get

* Unpack list of views in class method response

* Add Favorites back to import

* Replace deprecated assertEquals with assertEqual

* Rename Favorite FavoriteItem and encapsulate

Co-authored-by: Woods <jordan.woods@mkcorp.com>

* Fixing style error

* Fixes maxage to allow 0 as input (#639)

* Adds a sample for publishing datasources (#644)

* Adds a sample for publishing datasources

* Addresses feedback to use PAT and async flag

* Prep for v0.12 (#645)

* delete docs folder from master (#520)

* delete folder

* add back readme for docs

* Fix logger statement in User.add (#608)

The logger statement is using the parameter to output the id of the user, but that isnt set until line 67 and saved to a new variable. We want the logger statement to use that new user

* Prepares v0.12 release

* Fixes typo in changelog

Co-authored-by: Jac <jacalata@users.noreply.github.com>
Co-authored-by: Reba Magier <rebeccam@syapse.com>

Co-authored-by: Jac <jacalata@users.noreply.github.com>
Co-authored-by: Reba Magier <rebeccam@syapse.com>
Co-authored-by: Stephen Mitchell <scum@mac.com>
Co-authored-by: Mary Brennan <mbren@users.noreply.github.com>
Co-authored-by: Tyler Doyle <kingt8y8@gmail.com>
Co-authored-by: jorwoods <jorwoods@users.noreply.github.com>
Co-authored-by: Woods <jordan.woods@mkcorp.com>
shinchris pushed a commit that referenced this pull request Jul 10, 2020
* delete docs folder from master (#520)

* delete folder

* add back readme for docs

* Fix logger statement in User.add (#608)

The logger statement is using the parameter to output the id of the user, but that isnt set until line 67 and saved to a new variable. We want the logger statement to use that new user

* Development to master for v0.12 (#646)

* Sync development with master branch (#613)

* delete docs folder from master (#520)

* delete folder

* add back readme for docs

* Fix logger statement in User.add (#608)

The logger statement is using the parameter to output the id of the user, but that isnt set until line 67 and saved to a new variable. We want the logger statement to use that new user

Co-authored-by: Jac <jacalata@users.noreply.github.com>
Co-authored-by: Reba Magier <rebeccam@syapse.com>

* Adds hidden_views parameter to publish() (#614)

* delete docs folder from master (#520)

* delete folder

* add back readme for docs

* Fix logger statement in User.add (#608)

The logger statement is using the parameter to output the id of the user, but that isnt set until line 67 and saved to a new variable. We want the logger statement to use that new user

* Adds hidden views parameter to workbook publish

* Pycodestyle

Co-authored-by: Chris Shin <cshin@tableau.com>
Co-authored-by: Jac <jacalata@users.noreply.github.com>
Co-authored-by: Reba Magier <rebeccam@syapse.com>

* Code cleanup (#618)

* delete docs folder from master (#520)

* delete folder

* add back readme for docs

* Fix logger statement in User.add (#608)

The logger statement is using the parameter to output the id of the user, but that isnt set until line 67 and saved to a new variable. We want the logger statement to use that new user

* Cleans up imports and fixes some errors along the way

* pycodestyle fix for single char var name

Co-authored-by: Chris Shin <cshin@tableau.com>
Co-authored-by: Jac <jacalata@users.noreply.github.com>
Co-authored-by: Reba Magier <rebeccam@syapse.com>

* update comment to say Python 3.5 is required to run samples (#619)

* update comment to say Python 3.5 is required to run samples

* pycodestyle fix for single char var name

* Simple Paging Endpoint for GraphQL/Metadata API (#623)

Because GraphQL can be arbitrarily complex and nested, we can't get as smart with an automatic Pager object without parsing the query, and that's a can of worms.

So for now, I added a new endpoint that will take a single query with one set of pagination parameters and run through it until it ends. It's not very smart, but it works.

* Support Metadata Services Backfill & Eventing APIs (#626)

Simple JSON endpoints that return the status of Metadata Services related events.

* Adds in maxage param to csv and pdf export options (#635)

* Adds in maxage param to csv and pdf export options

* Fixes style issue

* Adding named param to test to be clear

* User favorites endpoint (#638)

* Create FavoriteRequest factory

* Create favorites_endpoint

* Enable addition of favorites

* Enabled deletion of favorites

* Fix XML response calls

* Genericize descriptor

* Fix typo

* Remove outdated content

* Use more descriptive variable names

* Adjust API version

* Create Favorite "enum"

* Factor response parsing logic to model

The favorites item is now a dictionary.
The user_item has been altered to reflect this.

* Test favorites.get

* Test adding a favorite workbook

* Test adding favorite view

* Test adding favorite data source

* Test adding favorite project

* Test favorite deletion

* Expand favorites test_get

* Unpack list of views in class method response

* Add Favorites back to import

* Replace deprecated assertEquals with assertEqual

* Rename Favorite FavoriteItem and encapsulate

Co-authored-by: Woods <jordan.woods@mkcorp.com>

* Fixing style error

* Fixes maxage to allow 0 as input (#639)

* Adds a sample for publishing datasources (#644)

* Adds a sample for publishing datasources

* Addresses feedback to use PAT and async flag

* Prep for v0.12 (#645)

* delete docs folder from master (#520)

* delete folder

* add back readme for docs

* Fix logger statement in User.add (#608)

The logger statement is using the parameter to output the id of the user, but that isnt set until line 67 and saved to a new variable. We want the logger statement to use that new user

* Prepares v0.12 release

* Fixes typo in changelog

Co-authored-by: Jac <jacalata@users.noreply.github.com>
Co-authored-by: Reba Magier <rebeccam@syapse.com>

Co-authored-by: Jac <jacalata@users.noreply.github.com>
Co-authored-by: Reba Magier <rebeccam@syapse.com>
Co-authored-by: Stephen Mitchell <scum@mac.com>
Co-authored-by: Mary Brennan <mbren@users.noreply.github.com>
Co-authored-by: Tyler Doyle <kingt8y8@gmail.com>
Co-authored-by: jorwoods <jorwoods@users.noreply.github.com>
Co-authored-by: Woods <jordan.woods@mkcorp.com>

Co-authored-by: Jac <jacalata@users.noreply.github.com>
Co-authored-by: Reba Magier <rebeccam@syapse.com>
Co-authored-by: Stephen Mitchell <scum@mac.com>
Co-authored-by: Mary Brennan <mbren@users.noreply.github.com>
Co-authored-by: Tyler Doyle <kingt8y8@gmail.com>
Co-authored-by: jorwoods <jorwoods@users.noreply.github.com>
Co-authored-by: Woods <jordan.woods@mkcorp.com>
graysonarts pushed a commit that referenced this pull request Oct 29, 2020
* delete docs folder from master (#520)

* delete folder

* add back readme for docs

* Fix logger statement in User.add (#608)

The logger statement is using the parameter to output the id of the user, but that isnt set until line 67 and saved to a new variable. We want the logger statement to use that new user

* Adds django-style shorthand to filter, sort, and paginate

* Consolidate code, add all()

* Update query.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants
0