Skip to content
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

fix: refactored SQL-based alerts to not pass sqlalchemy objects as args #10506

Merged
merged 4 commits into from
Aug 4, 2020

Conversation

JasonD28
Copy link
Contributor

@JasonD28 JasonD28 commented Aug 3, 2020

SUMMARY

Updated the code for SQL-based alerting to remove the passing of sqlalchemy objects as arguments to functions and instead replace them with ids for those objects.

BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF

TEST PLAN

ADDITIONAL INFORMATION

  • Has associated issue:
  • Changes UI
  • Requires DB Migration.
  • Confirm DB Migration upgrade and downgrade tested.
  • Introduces new feature or API
  • Removes existing feature or API

@JasonD28 JasonD28 marked this pull request as draft August 3, 2020 16:26
return

if run_alert_query(schedule):
if run_alert_query(
schedule.id,
Copy link
Member

Choose a reason for hiding this comment

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

Instead of passing in every param needed from schedule, maybe it's cleaner to only pass in the schedule id, then you can get the schedule object within the function and reference all the params there.

@pull-request-size pull-request-size bot added size/S and removed size/M labels Aug 3, 2020
@JasonD28 JasonD28 marked this pull request as ready for review August 3, 2020 23:27
@bkyryliuk bkyryliuk merged commit 9c5b0e1 into apache:master Aug 4, 2020
Ofeknielsen pushed a commit to ofekisr/incubator-superset that referenced this pull request Oct 5, 2020
…gs (apache#10506)

* refractored alerting to not pass sqlalchemy obj as args

* updated to pass only alert id as arg

* used object id instead of argument

* updated alerts_tests.py to reflect change

Co-authored-by: Jason Davis <@dropbox.com>
auxten pushed a commit to auxten/incubator-superset that referenced this pull request Nov 20, 2020
…gs (apache#10506)

* refractored alerting to not pass sqlalchemy obj as args

* updated to pass only alert id as arg

* used object id instead of argument

* updated alerts_tests.py to reflect change

Co-authored-by: Jason Davis <@dropbox.com>
@mistercrunch mistercrunch added 🏷️ bot A label used by `supersetbot` to keep track of which PR where auto-tagged with release labels 🚢 0.38.0 labels Mar 12, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🏷️ bot A label used by `supersetbot` to keep track of which PR where auto-tagged with release labels size/S 🚢 0.38.0
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants