Skip to content

Commit

Permalink
chore: fix list_dictionaries
Browse files Browse the repository at this point in the history
  • Loading branch information
TCeason committed Sep 5, 2024
1 parent 633e95b commit 3469f3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/meta/api/src/schema_api_impl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3950,7 +3950,7 @@ impl<KV: kvapi::KVApi<Error = MetaError> + ?Sized> SchemaApi for KV {
req.tenant.clone(),
DictionaryIdentity::new(req.db_id, "dummy".to_string()),
);
let dir = DirName::new(dictionary_ident);
let dir = DirName::new_with_level(dictionary_ident, 2);

let name_id_values = self.list_id_value(&dir).await?;
Ok(name_id_values
Expand Down

0 comments on commit 3469f3b

Please sign in to comment.