Skip to content

Commit

Permalink
fixup! Addressing review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
albinsuresh committed Jan 10, 2025
1 parent d750fe3 commit fb370bf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
//! This module defines the axum routes and handlers for the file transfer service REST APIs.
//! The following endpoints are currently supported:
//!
//! - `PUT /tedge/file-transfer/*path`: Upload a new file
//! - `GET /tedge/file-transfer/*path`: Retrieves an existing file
//! - `DELETE /tedge/file-transfer/*path`: Deletes a file
use super::error::FileTransferRequestError as Error;
use super::request_files::FileTransferDir;
use super::request_files::FileTransferPath;
Expand Down
1 change: 0 additions & 1 deletion crates/extensions/c8y_mapper_ext/src/entity_cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ pub enum Error {
/// Any entity that is registered before its parents are cached in the `pending_entities` store,
/// until those parents are registered as well.
/// Once the parent is registered, the pending child entities are also registered along with it.
pub(crate) struct EntityCache {
main_device_tid: EntityTopicId,
main_device_xid: EntityExternalId,
Expand Down

0 comments on commit fb370bf

Please sign in to comment.