Skip to content

Commit 30b7297

Browse files
authored
Merge branch 'main' into fix/integrationtest
2 parents 294279c + bd6290a commit 30b7297

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

databroker/src/broker.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1411,7 +1411,7 @@ pub struct AuthorizedAccess<'a, 'b> {
14111411
permissions: &'b Permissions,
14121412
}
14131413

1414-
impl<'a, 'b> AuthorizedAccess<'a, 'b> {
1414+
impl AuthorizedAccess<'_, '_> {
14151415
#[allow(clippy::too_many_arguments)]
14161416
pub async fn add_entry(
14171417
&self,

databroker/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ async fn add_kuksa_attribute(
112112
}
113113
}
114114

115-
async fn read_metadata_file<'a, 'b>(
115+
async fn read_metadata_file(
116116
database: &broker::AuthorizedAccess<'_, '_>,
117117
filename: &str,
118118
) -> Result<(), Box<dyn std::error::Error>> {

databroker/src/viss/v2/server.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -386,8 +386,8 @@ fn resolve_permissions(
386386
}
387387
}
388388

389-
async fn generate_metadata<'a>(
390-
db: &'a AuthorizedAccess<'_, '_>,
389+
async fn generate_metadata(
390+
db: &AuthorizedAccess<'_, '_>,
391391
path: &str,
392392
) -> HashMap<String, MetadataEntry> {
393393
let mut metadata: HashMap<String, MetadataEntry> = HashMap::new();

0 commit comments

Comments
 (0)