-
Notifications
You must be signed in to change notification settings - Fork 155
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
feat(stdlib/contrib): add teams package #2866
Conversation
Could you please move this module to use our new "contrib" layout? You can see how to do that here. |
83b3fed
to
0583b2a
Compare
Codecov Report
@@ Coverage Diff @@
## master #2866 +/- ##
=======================================
Coverage 50.81% 50.81%
=======================================
Files 317 318 +1
Lines 40307 40309 +2
=======================================
+ Hits 20482 20484 +2
Misses 17454 17454
Partials 2371 2371
Continue to review full report at Codecov.
|
@rockstar it is now refactored to a new contrib layout + I also added a README.md to the new package. |
1b483e4
to
e3eb0f0
Compare
libflux/src/core/semantic/types.rs
Outdated
@@ -1144,7 +1144,7 @@ impl Function { | |||
// This means they should match. Enforce this condition by inserting | |||
// the pipe argument into the required ones with the same key. | |||
f.req.insert(fp.k.clone(), fp.v); | |||
g.req.insert(fp.k.clone(), gp.v); | |||
g.req.insert(fp.k, gp.v); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
discovered by clippy, required for the tests to pass
@rockstar conflicts resolved, a new rust's clippy recommendation applied, pls merge |
This PR adds teams package to flux so that notifications can be sent from flux to Microsoft Teams. It is the first step in influxdata/influxdb#17939
Notes:
Done checklist