Commit cfff1c5e authored by Marc Vef's avatar Marc Vef
Browse files

Bugfix: Remove prometheus flag for daemon during tests

parent 7085d665
Loading
Loading
Loading
Loading
Loading
+10 −5
Original line number Diff line number Diff line
@@ -19,11 +19,16 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
- Additional `#ifdef` to remove unused code ([!141](https://storage.bsc.es/gitlab/hpc/gekkofs/-/merge_requests/141))
### Removed
### Fixed
- Fix a compilation error for testing ([!234](https://storage.bsc.es/gitlab/hpc/gekkofs/-/merge_requests/234)).
- Using `unlink` now fails if it is a directory unless the `AT_REMOVEDIR` flag is used (POSIX compliance) ([!139](https://storage.bsc.es/gitlab/hpc/gekkofs/-/merge_requests/139)).
- fchdir generate a SIGSEV in debug mode (due to log) ([!141](https://storage.bsc.es/gitlab/hpc/gekkofs/-/merge_requests/141))
- Fix fstatat to be able to understand `AT_EMPTY_PATH` flag used in coreutils (`cat` ...) ([!149](https://storage.bsc.es/gitlab/hpc/gekkofs/-/merge_requests/149)).
- Fix segfault in sfind/gfind ([!227](https://storage.bsc.es/gitlab/hpc/gekkofs/-/merge_requests/227)
- Fixed a bug which caused GekkoFS tests to
  fail ([!235](https://storage.bsc.es/gitlab/hpc/gekkofs/-/merge_requests/235)).
- Fixed a compilation error for testing ([!234](https://storage.bsc.es/gitlab/hpc/gekkofs/-/merge_requests/234)).
- Using `unlink` now fails if it is a directory unless the `AT_REMOVEDIR` flag is used (POSIX
  compliance) ([!139](https://storage.bsc.es/gitlab/hpc/gekkofs/-/merge_requests/139)).
- fchdir generate a SIGSEV in debug mode (due to
  log) ([!141](https://storage.bsc.es/gitlab/hpc/gekkofs/-/merge_requests/141))
- Fixed fstatat to be able to understand `AT_EMPTY_PATH` flag used in coreutils (`cat`
  ...) ([!149](https://storage.bsc.es/gitlab/hpc/gekkofs/-/merge_requests/149)).
- Fixed segfault in sfind/gfind ([!227](https://storage.bsc.es/gitlab/hpc/gekkofs/-/merge_requests/227)

## [0.9.1] - 2022-04-29

+8 −9
Original line number Diff line number Diff line
@@ -254,8 +254,7 @@ class Daemon:
                '--dbbackend', self._database,
                '--output-stats', self.logdir / 'stats.log',
                '--enable-collection',
                 '--enable-chunkstats',
                 '--enable-prometheus' ]
                '--enable-chunkstats']
        if self._database == "parallaxdb" :
            args.append('--clean-rootdir-finish')