diff options
| author | zousar <[email protected]> | 2025-04-22 15:57:02 -0600 |
|---|---|---|
| committer | zousar <[email protected]> | 2025-04-22 15:57:02 -0600 |
| commit | 6646a12bbffd349ad234a4265e339797e815493b (patch) | |
| tree | 6227d1e13b14526b91b5e728a2b3e03980521173 /src/zenutil/filebuildstorage.cpp | |
| parent | Fix list-container positional args to remove query-path (diff) | |
| download | zen-6646a12bbffd349ad234a4265e339797e815493b.tar.xz zen-6646a12bbffd349ad234a4265e339797e815493b.zip | |
Replace container with namespaces
Diffstat (limited to 'src/zenutil/filebuildstorage.cpp')
| -rw-r--r-- | src/zenutil/filebuildstorage.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/zenutil/filebuildstorage.cpp b/src/zenutil/filebuildstorage.cpp index b77eb1d11..badfb4840 100644 --- a/src/zenutil/filebuildstorage.cpp +++ b/src/zenutil/filebuildstorage.cpp @@ -35,9 +35,10 @@ public: virtual ~FileBuildStorage() {} - virtual CbObject ListContainers() override + virtual CbObject ListNamespaces(bool bRecursive) override { - ZEN_TRACE_CPU("FileBuildStorage::ListContainers"); + ZEN_TRACE_CPU("FileBuildStorage::ListNamespaces"); + ZEN_UNUSED(bRecursive); SimulateLatency(0, 0); |