Skip to content

Commit

Permalink
chore(deps): Export more common bits for components (vectordotdev#17788)
Browse files Browse the repository at this point in the history
<!--
**Your PR title must conform to the conventional commit spec!**

  <type>(<scope>)!: <description>

  * `type` = chore, enhancement, feat, fix, docs
  * `!` = OPTIONAL: signals a breaking change
* `scope` = Optional when `type` is "chore" or "docs", available scopes
https://github.com/vectordotdev/vector/blob/master/.github/semantic.yml#L20
  * `description` = short description of the change

Examples:

  * enhancement(file source): Add `sort` option to sort discovered files
  * feat(new source): Initial `statsd` source
  * fix(file source): Fix a bug discovering new files
  * chore(external docs): Clarify `batch_size` option
-->
  • Loading branch information
bruceg authored Jun 29, 2023
1 parent cba983e commit 062224b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions src/sinks/azure_common/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pub(crate) mod config;
pub(crate) mod service;
pub(crate) mod sink;
pub mod config;
pub mod service;
pub mod sink;
2 changes: 1 addition & 1 deletion src/sinks/azure_common/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use tracing::Instrument;
use crate::sinks::azure_common::config::{AzureBlobRequest, AzureBlobResponse};

#[derive(Clone)]
pub(crate) struct AzureBlobService {
pub struct AzureBlobService {
client: Arc<ContainerClient>,
}

Expand Down
8 changes: 4 additions & 4 deletions src/sinks/s3_common/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pub(crate) mod config;
pub(crate) mod partitioner;
pub(crate) mod service;
pub(crate) mod sink;
pub mod config;
pub mod partitioner;
pub mod service;
pub mod sink;

0 comments on commit 062224b

Please sign in to comment.