-
Notifications
You must be signed in to change notification settings - Fork 10
NO JIRA: Updating vendor directory missing files and quick fix for cargo check #198
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
NO JIRA: Updating vendor directory missing files and quick fix for cargo check #198
Conversation
| } | ||
| } | ||
|
|
||
| #[derive(Clone)] |
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.
this changes also related to the cargo check?
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.
Yes, this fails for me every time. tls connected trait was not added correctly at implementation.
|
|
||
| const fn should_encode_as_binary(&self) -> bool { | ||
| use vector_lib::codecs::encoding::Serializer::{ | ||
| Avro, Csv, Gelf, Json, Logfmt, Native, NativeJson, Protobuf, RawMessage, Text, |
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.
Is this changes also related to the cargo check?
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.
Yes cargo check should fail when you run it without the changes, as syslog was not initially added to the implemented interfaces.
|
/lgtm |
|
/hold for z-stream code freeze |
|
@cahartma do we need to update our CI to embrace these test changes? |
| # Jetbrains | ||
| .idea/ | ||
|
|
||
| !vendor/ |
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.
Why do we now need to vendor dependencies? Is it absolutely necessary? These don't look security critical but do we have a mechanism to ensure they get upgraded as either the vector version gets updated or we discover security flaws?
|
/approve |
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: cahartma, jcantrill The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
|
/unhold |
Updated files to ensure
cargo checkruns successfully. Two vendor packages were updated to include files from the checksum (same package but different versions). One fix for tls file, adding the missing 'Connected' trait.In addition to being able to successfully run
cargo check --offline:Now, we should be able to build dev and run all upstream unit tests:
cc: @jcantrill @Clee2691 @vparfonov