Skip to content

Commit aae6d1d

Browse files
committed
feat: updated tucana version
1 parent 3547c00 commit aae6d1d

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

src/flow_definition/mod.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#![allow(dead_code)]
2+
13
mod error;
24
mod feature;
35

@@ -53,7 +55,7 @@ impl LoadedModule {
5355
}
5456

5557
Module {
56-
identifier: self.config.identifier,
58+
identifier: self.config.identifier.clone(),
5759
name: self.config.name,
5860
description: self.config.description,
5961
documentation: self.config.documentation,
@@ -67,6 +69,7 @@ impl LoadedModule {
6769
definition_data_types: self.data_types,
6870
configurations: self.configurations,
6971
definitions: self.definitions,
72+
definition_source: self.config.identifier,
7073
}
7174
}
7275
}

src/flow_service/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@ mod tests {
168168
definition_data_types: Vec::new(),
169169
configurations: Vec::new(),
170170
definitions: Vec::new(),
171+
definition_source: identifier.to_string()
171172
}
172173
}
173174

0 commit comments

Comments
 (0)