]> git.ipfire.org Git - thirdparty/bacula.git/log
thirdparty/bacula.git
3 years agoFix windows compilation
Eric Bollengier [Thu, 4 Feb 2021 10:31:27 +0000 (11:31 +0100)] 
Fix windows compilation

3 years agoregress: Fix prune-migration-test with new copy/migration selection algorithm
Eric Bollengier [Wed, 3 Feb 2021 15:42:22 +0000 (16:42 +0100)] 
regress: Fix prune-migration-test with new copy/migration selection algorithm

3 years agoFix copy/migration job selection
Eric Bollengier [Wed, 3 Feb 2021 15:37:37 +0000 (16:37 +0100)] 
Fix copy/migration job selection

Description:
-----------

The Copy/Migration job selection with a Job name was selecting
Jobs that are already migrated. It is leading to a situation where
a new catalog record is created for the new job, but the job is not
used at the end. JobFiles=0 JobBytes=0.

In some conditions, the accurate code selects the incorrect job
record.

In the catalog, both Job records have the same attributes
(same JobTDate, same StartTime). So the selection process
was returning one or the other depending on the weather cast.

We no longer try to copy/migrate a job that is not a valid
Backup job, and we check that the Job status is T.

3 years agodocker: Move dkid unit tests to separate file.
Radosław Korzeniewski [Thu, 14 Jan 2021 16:20:26 +0000 (17:20 +0100)] 
docker: Move dkid unit tests to separate file.

3 years agopluginlib: Fix linking problem.
Radosław Korzeniewski [Thu, 14 Jan 2021 10:55:01 +0000 (11:55 +0100)] 
pluginlib: Fix linking problem.

3 years agodocker: Refactor POOLMEM variables for POOL_MEM class.
Radosław Korzeniewski [Thu, 14 Jan 2021 10:00:52 +0000 (11:00 +0100)] 
docker: Refactor POOLMEM variables for POOL_MEM class.

3 years agoUpdate pluginlib.
Radosław Korzeniewski [Thu, 14 Jan 2021 10:00:01 +0000 (11:00 +0100)] 
Update pluginlib.

3 years agometaplugin: Fix prepare_backend regression.
Radosław Korzeniewski [Fri, 8 Jan 2021 16:35:08 +0000 (17:35 +0100)] 
metaplugin: Fix prepare_backend regression.

3 years agometaplugin: Add plugin command duplication check.
Radosław Korzeniewski [Fri, 8 Jan 2021 16:06:21 +0000 (17:06 +0100)] 
metaplugin: Add plugin command duplication check.

The duplicate plugin command prohibits a proper backend switching
and leads to backup errors. This is a configuration issue and Bacula
plugin API limitation. Now we will detect it and properly handle.

3 years agometaplugin: Refactor simple sscanf.
Radosław Korzeniewski [Fri, 8 Jan 2021 14:29:27 +0000 (15:29 +0100)] 
metaplugin: Refactor simple sscanf.

3 years agometaplugin: Correct error message format.
Radosław Korzeniewski [Fri, 8 Jan 2021 14:20:23 +0000 (15:20 +0100)] 
metaplugin: Correct error message format.

3 years agometaplugin: Fix regression at endjob procedure.
Radosław Korzeniewski [Thu, 7 Jan 2021 12:13:27 +0000 (13:13 +0100)] 
metaplugin: Fix regression at endjob procedure.

3 years agopluginlib: Update metaplugin to use commctx.
Radosław Korzeniewski [Tue, 5 Jan 2021 17:17:33 +0000 (18:17 +0100)] 
pluginlib: Update metaplugin to use commctx.

This is a final metaplugin refactoring which allow to move
all metaplugin based plugins (kubernetes, swift and rhv) to use
a common code base removing all unwanted coding and introduce
a static configuration only. Now all you need to define a next
metaplugin is to define a following variables and link metaplugin.lo:

// Plugin Info definitions
extern const char *PLUGIN_LICENSE;
extern const char *PLUGIN_AUTHOR;
extern const char *PLUGIN_DATE;
extern const char *PLUGIN_VERSION;
extern const char *PLUGIN_DESCRIPTION;

// Plugin linking time variables
extern const char *PLUGINPREFIX;
extern const char *PLUGINNAME;
extern const char *PLUGINAPI;
extern const char *BACKEND_CMD;

// The list of restore options saved to the RestoreObject.
extern struct ini_items plugin_items_dump[];

// the list of valid plugin options
extern const char *valid_params[];

3 years agopluginlib: Update commctx to handle foreach status.
Radosław Korzeniewski [Tue, 5 Jan 2021 17:06:41 +0000 (18:06 +0100)] 
pluginlib: Update commctx to handle foreach status.

3 years agopluginlib: PTCOMM allow to be used with CommCTX.
Radosław Korzeniewski [Mon, 4 Jan 2021 13:10:11 +0000 (14:10 +0100)] 
pluginlib: PTCOMM allow to be used with CommCTX.

3 years agodocker: Refactor to use new pluginlib.
Radosław Korzeniewski [Wed, 23 Dec 2020 16:51:00 +0000 (17:51 +0100)] 
docker: Refactor to use new pluginlib.

3 years agopluginlib: Refactoring PLUGINPREFIX to C++.
Radosław Korzeniewski [Wed, 23 Dec 2020 16:45:31 +0000 (17:45 +0100)] 
pluginlib: Refactoring PLUGINPREFIX to C++.

3 years agoRemove legacy pluginlib.
Radosław Korzeniewski [Wed, 23 Dec 2020 16:29:48 +0000 (17:29 +0100)] 
Remove legacy pluginlib.

3 years agodocker: Refactor to use new pluginlib.
Radosław Korzeniewski [Wed, 23 Dec 2020 16:02:45 +0000 (17:02 +0100)] 
docker: Refactor to use new pluginlib.

3 years agopluginlib: Add command context switcher.
Radosław Korzeniewski [Wed, 23 Dec 2020 13:14:59 +0000 (14:14 +0100)] 
pluginlib: Add command context switcher.

3 years agopluginlib: Add command context switcher.
Radosław Korzeniewski [Wed, 23 Dec 2020 13:14:40 +0000 (14:14 +0100)] 
pluginlib: Add command context switcher.

3 years agopluginlib: Add smartptr template unittest.
Radosław Korzeniewski [Wed, 23 Dec 2020 12:00:57 +0000 (13:00 +0100)] 
pluginlib: Add smartptr template unittest.

3 years agopluginlib: Add smartalist template unittest.
Radosław Korzeniewski [Wed, 23 Dec 2020 11:52:36 +0000 (12:52 +0100)] 
pluginlib: Add smartalist template unittest.

3 years agopluginlib: Add common smart class templates.
Radosław Korzeniewski [Wed, 23 Dec 2020 10:25:51 +0000 (11:25 +0100)] 
pluginlib: Add common smart class templates.

3 years agoptcomm: Fix damaged buffer found in buffer resize.
Radosław Korzeniewski [Tue, 22 Dec 2020 15:00:32 +0000 (16:00 +0100)] 
ptcomm: Fix damaged buffer found in buffer resize.

3 years agoregress: Add long filename metaplugin tests.
Radosław Korzeniewski [Tue, 22 Dec 2020 14:58:23 +0000 (15:58 +0100)] 
regress: Add long filename metaplugin tests.

3 years agoFix #7161 Add JobMedia::MediaId index to improve purge query
Eric Bollengier [Fri, 18 Dec 2020 16:20:21 +0000 (17:20 +0100)] 
Fix #7161 Add JobMedia::MediaId index to improve purge query

3 years agoptcomm: Correct and increase default bpipe timeout.
Radosław Korzeniewski [Wed, 9 Dec 2020 15:31:38 +0000 (16:31 +0100)] 
ptcomm: Correct and increase default bpipe timeout.

3 years agopluginlib: Update PTCOMM.
Radosław Korzeniewski [Mon, 7 Dec 2020 16:15:25 +0000 (17:15 +0100)] 
pluginlib: Update PTCOMM.

3 years agoptcomm: Fix get_backend_pid regression.
Radosław Korzeniewski [Mon, 7 Dec 2020 15:11:09 +0000 (16:11 +0100)] 
ptcomm: Fix get_backend_pid regression.

3 years agopluginlib: Update build rules to check for headers.
Radosław Korzeniewski [Mon, 7 Dec 2020 15:10:46 +0000 (16:10 +0100)] 
pluginlib: Update build rules to check for headers.

3 years agoregress: Update k8s plugin protocol test.
Radosław Korzeniewski [Tue, 24 Nov 2020 18:21:42 +0000 (19:21 +0100)] 
regress: Update k8s plugin protocol test.

3 years agoregress: Add common metaplugin protocol test.
Radosław Korzeniewski [Tue, 24 Nov 2020 18:20:52 +0000 (19:20 +0100)] 
regress: Add common metaplugin protocol test.

3 years agopluginlib: Update test metaplugin backend.
Radosław Korzeniewski [Tue, 24 Nov 2020 18:17:00 +0000 (19:17 +0100)] 
pluginlib: Update test metaplugin backend.

Now metaplugin test backend can support dedicated regression testing
parameters which modify the backend behavior, i.e. you can fail the job
on request or force other errors.

3 years agopluginlib: Update ptcomm.
Radosław Korzeniewski [Tue, 24 Nov 2020 18:14:24 +0000 (19:14 +0100)] 
pluginlib: Update ptcomm.

3 years agopluginlib: Extend scan_parameter_str for char*.
Radosław Korzeniewski [Tue, 24 Nov 2020 08:39:41 +0000 (09:39 +0100)] 
pluginlib: Extend scan_parameter_str for char*.

3 years agopluginlib: Add scan_parameter_str to replace some sscanf.
Radosław Korzeniewski [Mon, 23 Nov 2020 17:34:33 +0000 (18:34 +0100)] 
pluginlib: Add scan_parameter_str to replace some sscanf.

3 years agopluginlib: Add common Metaplugin protocol test backend.
Radosław Korzeniewski [Mon, 23 Nov 2020 17:12:13 +0000 (18:12 +0100)] 
pluginlib: Add common Metaplugin protocol test backend.

3 years agoPlugins: Add a common Bacula FD Plugin library.
Radosław Korzeniewski [Mon, 23 Nov 2020 12:02:23 +0000 (13:02 +0100)] 
Plugins: Add a common Bacula FD Plugin library.

3 years agodocker: Fix variable scope reduced.
Radosław Korzeniewski [Tue, 17 Nov 2020 14:11:55 +0000 (15:11 +0100)] 
docker: Fix variable scope reduced.

3 years agodocker: Fix variable not initialized in the constructor.
Radosław Korzeniewski [Tue, 17 Nov 2020 14:11:02 +0000 (15:11 +0100)] 
docker: Fix variable not initialized in the constructor.

3 years agoregress: Attempt to fix ldap-auth-plugin-test.
Radosław Korzeniewski [Tue, 17 Nov 2020 09:38:10 +0000 (10:38 +0100)] 
regress: Attempt to fix ldap-auth-plugin-test.

3 years agoupdate configure
Eric Bollengier [Tue, 2 Feb 2021 17:51:06 +0000 (18:51 +0100)] 
update configure

3 years agoFix configure.in
Eric Bollengier [Tue, 2 Feb 2021 17:50:56 +0000 (18:50 +0100)] 
Fix configure.in

3 years agoFix compilation with init_working_directory()
Eric Bollengier [Tue, 2 Feb 2021 17:49:40 +0000 (18:49 +0100)] 
Fix compilation with init_working_directory()

3 years agoupdate version
Eric Bollengier [Tue, 2 Feb 2021 17:41:32 +0000 (18:41 +0100)] 
update version

3 years agoupdate bgit.py
Alain Spineux [Tue, 2 Feb 2021 16:11:30 +0000 (17:11 +0100)] 
update bgit.py

3 years agoregress: Avoid multiple submission with ctest
Eric Bollengier [Tue, 2 Feb 2021 10:12:47 +0000 (11:12 +0100)] 
regress: Avoid multiple submission with ctest

3 years agoReview bstrncpy() calls
Michal Rakowski [Tue, 2 Feb 2021 10:00:38 +0000 (11:00 +0100)] 
Review bstrncpy() calls

3 years agoregress: update storageid-test-changer to check for #7222
Michal Rakowski [Tue, 26 Jan 2021 13:18:21 +0000 (14:18 +0100)] 
regress: update storageid-test-changer to check for #7222

3 years agoFix #7222 About 'yes' parameter for 'label barcodes' command
Michal Rakowski [Tue, 26 Jan 2021 13:17:35 +0000 (14:17 +0100)] 
Fix #7222 About 'yes' parameter for 'label barcodes' command

3 years agoInitialize StartTime in db_create_job_record()
Eric Bollengier [Mon, 1 Feb 2021 10:20:02 +0000 (11:20 +0100)] 
Initialize StartTime in db_create_job_record()

We initialize the StarTime DB field earlier in db_create_job_record()
to avoid strange behaviors when the job is canceled before the actual
start of the job.

When the StartTime field is NULL, the "list jobs" is incorrect, the
job output is also incorrect.

3 years agoregress: Capture the status of ctest
Eric Bollengier [Thu, 28 Jan 2021 16:16:13 +0000 (17:16 +0100)] 
regress: Capture the status of ctest

3 years agoregress: Try to fix CDASH double submission
Eric Bollengier [Thu, 28 Jan 2021 08:27:40 +0000 (09:27 +0100)] 
regress: Try to fix CDASH double submission

3 years agoAllow to set 0 as Maximum Job Error Count
Michal Rakowski [Wed, 27 Jan 2021 11:41:09 +0000 (12:41 +0100)] 
Allow to set 0 as Maximum Job Error Count

This allows job to run no matter how many error there is.

3 years agoFix #7262 About adding MaximumJobErrorCount FileDaemon directive
Michal Rakowski [Tue, 26 Jan 2021 09:49:49 +0000 (10:49 +0100)] 
Fix #7262 About adding MaximumJobErrorCount FileDaemon directive

3 years agoFix #7261 About the director segfaulting due to too small msg buffer
Michal Rakowski [Thu, 21 Jan 2021 10:17:21 +0000 (11:17 +0100)] 
Fix #7261 About the director segfaulting due to too small msg buffer

3 years agoregress: tweak silent mkdir
Alain Spineux [Mon, 18 Jan 2021 12:43:32 +0000 (13:43 +0100)] 
regress: tweak silent mkdir

3 years agoReplace call .bvfs_ls_all_files with ".bvfs_lsfiles allfiles"
Eric Bollengier [Fri, 15 Jan 2021 20:22:28 +0000 (21:22 +0100)] 
Replace call .bvfs_ls_all_files with ".bvfs_lsfiles allfiles"

3 years agoAdd .bvfs_ls_all_files command
Eric Bollengier [Wed, 13 Jan 2021 08:37:40 +0000 (09:37 +0100)] 
Add .bvfs_ls_all_files command

3 years agoAdd bstrftime_gmt_iso8601() function
Eric Bollengier [Tue, 12 Jan 2021 10:02:28 +0000 (11:02 +0100)] 
Add bstrftime_gmt_iso8601() function

3 years agoregress: Adapt resume-jobs-test to check for invalid storage during resume
Michal Rakowski [Mon, 11 Jan 2021 13:00:04 +0000 (14:00 +0100)] 
regress: Adapt resume-jobs-test to check for invalid storage during resume

3 years agoFix #7137 About checking for Storage being used for job restart/resume
Michal Rakowski [Mon, 21 Dec 2020 16:35:16 +0000 (17:35 +0100)] 
Fix #7137 About checking for Storage being used for job restart/resume

3 years agoAdd 'db_name_handler' for getting resource name from the catalog
Michal Rakowski [Thu, 31 Dec 2020 13:53:20 +0000 (14:53 +0100)] 
Add 'db_name_handler' for getting resource name from the catalog

3 years agowin32: Fix conditional #define's
Norbert Bizet [Fri, 15 Jan 2021 08:41:33 +0000 (03:41 -0500)] 
win32: Fix conditional #define's

3 years agobsmtp: Add the possibility to add emails separated with a comma as recipient list
Eric Bollengier [Fri, 15 Jan 2021 10:10:48 +0000 (11:10 +0100)] 
bsmtp: Add the possibility to add emails separated with a comma as recipient list

3 years agoregress: Schedule new tests/copy-job-objects-test
Eric Bollengier [Thu, 14 Jan 2021 15:17:52 +0000 (16:17 +0100)] 
regress: Schedule new tests/copy-job-objects-test

3 years agoregress: Add test to check if restore and plugin objects are copied by copy jobs
Michal Rakowski [Wed, 13 Jan 2021 11:38:21 +0000 (12:38 +0100)] 
regress: Add test to check if restore and plugin objects are copied by copy jobs

3 years agoTake PluginObjects into account when copying a job
Michal Rakowski [Mon, 11 Jan 2021 11:01:19 +0000 (12:01 +0100)] 
Take PluginObjects into account when copying a job

3 years agoWindows: Fix #7256 Update Windows version detection with latest versions (Windows...
Norbert Bizet [Wed, 13 Jan 2021 15:16:47 +0000 (10:16 -0500)] 
Windows: Fix #7256 Update Windows version detection with latest versions (Windows 10).

3 years agoregress: Schedule json-test in CDASH
Eric Bollengier [Fri, 8 Jan 2021 10:41:03 +0000 (11:41 +0100)] 
regress: Schedule json-test in CDASH

3 years agoFix org#2588 About incorrect Object/ObjectId type in update_postgresql_tables
Eric Bollengier [Wed, 6 Jan 2021 14:29:40 +0000 (15:29 +0100)] 
Fix org#2588 About incorrect Object/ObjectId type in update_postgresql_tables

The Object/ObjectId field has the type serial when the schema is upgraded with
update_postgresql_tables while it has the type bigserial when the DB is created
with make_postgresql_tables.

To fix manually the problem, it is possible to exectute the following SQL command:

ALTER TABLE Object ALTER ObjectId TYPE BIGINT;

3 years agoregress: Add query-subst-test to CDASH
Eric Bollengier [Wed, 6 Jan 2021 11:42:40 +0000 (12:42 +0100)] 
regress: Add query-subst-test to CDASH

3 years agoFix #7164 About Director reload issue with missing Job's directive
Eric Bollengier [Mon, 28 Dec 2020 15:59:56 +0000 (16:59 +0100)] 
Fix #7164 About Director reload issue with missing Job's directive

Description:
-----------

When a required directive is removed (like the FileSet directive from the Job resource)
and the reload command is issued, the Director process is doing a M_ERROR_TERM.

  10-Dec 14:31 zog8-dir ERROR TERMINATION
    "Fileset" directive in Job "BackupClient1" resource is required, but not found.

Workaround:
-----------

Use bacula-dir -t or breload to validate the configuration before the reload.

3 years agoregress: Improve copy-uncopied-test to check for #6637
Michal Rakowski [Thu, 10 Dec 2020 08:05:42 +0000 (09:05 +0100)] 
regress: Improve copy-uncopied-test to check for #6637

3 years agoFix #6637 About pool overriding for copy jobs
Michal Rakowski [Thu, 10 Dec 2020 08:04:14 +0000 (09:04 +0100)] 
Fix #6637 About pool overriding for copy jobs

For copy/migration pool should not be overriden, pools from Job
definition should be used.

3 years agoregress: copy-job-test add option to force the copy to rehydrate the data
Alain Spineux [Wed, 23 Dec 2020 15:05:11 +0000 (16:05 +0100)] 
regress: copy-job-test add option to force the copy to rehydrate the data

- only available if FORCE_DEDUP = 1
- set XPARAM NEXT_NODEDUP to yes to change the target device of the copy
  job to a "File" device and force the copy job to do the rehydration
  ( just notice that the restore at the end also do the rehydration )

3 years agoFix #7141 rpm install try a "useradd root" instead of "useradd bacula"
Alain Spineux [Wed, 16 Dec 2020 15:17:16 +0000 (16:17 +0100)] 
Fix #7141 rpm install try a "useradd root" instead of "useradd bacula"

- the {file_daemon_user} is root
- add %{bacula_user}="bacula" and use it in useradd for client-only

3 years agoFix update_sqlite3_tables to upgrade from 9.6 to 11.0
Eric Bollengier [Tue, 15 Dec 2020 10:58:10 +0000 (11:58 +0100)] 
Fix update_sqlite3_tables to upgrade from 9.6 to 11.0

3 years agoFix MySQL update procedure with incorrect handling of the FileIndex type
Eric Bollengier [Tue, 15 Dec 2020 12:48:27 +0000 (13:48 +0100)] 
Fix MySQL update procedure with incorrect handling of the FileIndex type

Upgrade fails as follows:

   This script will update a Bacula MySQL database
   from any from version 12-15 or 1014-1021 to version 1022
   which is needed to convert from any Bacula Enterprise
   version 4.0.x or later to version 12.4.x
   or Bacula Community versions 5.0.x, 5.2.x, 7.4.x, 9.x.x to
   Community version 11.0

   Depending on the current version of your catalog, you may
   have to run this script multiple times

   ERROR 1264 (22003) at line 24: Out of range value for column 'FileIndex' at row 1
   Update of Bacula MySQL tables from 16 to 1017 failed.

This would indicate that the file_temp table is using an unsigned
version of FileIndex however it should be signed, so changing the
schema of that temp table makes it go further,

3 years agoChange 'append_filter' sql helper to a function
Michal Rakowski [Tue, 8 Dec 2020 12:38:07 +0000 (13:38 +0100)] 
Change 'append_filter' sql helper to a function

It's more safe to have a function instead of a macro in terms of type
checking at least.

3 years agoregress: Extend console-delete-object-test to validate filters
Michal Rakowski [Mon, 7 Dec 2020 15:26:25 +0000 (16:26 +0100)] 
regress: Extend console-delete-object-test to validate filters

3 years agoregress: fix plugin-objects-test
Michal Rakowski [Mon, 7 Dec 2020 13:54:54 +0000 (14:54 +0100)] 
regress: fix plugin-objects-test

3 years agoregress: Fix console-delete-object-test
Michal Rakowski [Fri, 4 Dec 2020 11:34:22 +0000 (12:34 +0100)] 
regress: Fix console-delete-object-test

3 years agoIntroduce more filters for 'delete object' command
Michal Rakowski [Thu, 3 Dec 2020 15:52:40 +0000 (16:52 +0100)] 
Introduce more filters for 'delete object' command

Now objects can be deleted in groups using 'category', 'type',
'uuid', 'name' and 'source' filters.
Single object could be also specified and all objects related to it will
be deleted as well.

3 years agoIntroduce 'get_plugin_objects_ids' method
Michal Rakowski [Thu, 3 Dec 2020 15:50:16 +0000 (16:50 +0100)] 
Introduce 'get_plugin_objects_ids' method

3 years agoIntroduce 'bdb_list_plugin_objects_ids' helper method
Michal Rakowski [Tue, 8 Dec 2020 09:14:04 +0000 (10:14 +0100)] 
Introduce 'bdb_list_plugin_objects_ids' helper method

3 years agowin32: Tweak openssl build
Eric Bollengier [Wed, 9 Dec 2020 14:10:45 +0000 (15:10 +0100)] 
win32: Tweak openssl build

3 years agowin32: Update openssl for Windows to 1.1.1i
Eric Bollengier [Wed, 9 Dec 2020 14:01:41 +0000 (15:01 +0100)] 
win32: Update openssl for Windows to 1.1.1i

3 years agoregress: fix bad syntax: "124: [: missing ]"
Alain Spineux [Tue, 8 Dec 2020 14:38:31 +0000 (15:38 +0100)] 
regress: fix bad syntax: "124: [: missing ]"

3 years agoregress: Add copyright to find_bad_jobmedia.pl
Eric Bollengier [Thu, 3 Dec 2020 17:39:17 +0000 (18:39 +0100)] 
regress: Add copyright to find_bad_jobmedia.pl

3 years agoTweak bsnapshot.c usage message
Eric Bollengier [Thu, 3 Dec 2020 16:53:19 +0000 (17:53 +0100)] 
Tweak bsnapshot.c usage message

3 years agoAdd one missing use of O_CLOEXEC in vtape_dev.c
Eric Bollengier [Thu, 3 Dec 2020 16:45:37 +0000 (17:45 +0100)] 
Add one missing use of O_CLOEXEC in vtape_dev.c

3 years agoWhen read-only volume found mark it in catalog -- fixes bug #2337
Kern Sibbald [Mon, 23 Oct 2017 17:22:52 +0000 (19:22 +0200)] 
When read-only volume found mark it in catalog -- fixes bug #2337

3 years agoMark Volume read-only only if no access rights or read-only partition
Kern Sibbald [Sat, 28 Oct 2017 16:39:12 +0000 (18:39 +0200)] 
Mark Volume read-only only if no access rights or read-only partition

3 years agoAdd error code to init_dev()
Eric Bollengier [Thu, 3 Dec 2020 16:28:13 +0000 (17:28 +0100)] 
Add error code to init_dev()

3 years agoregress: Schedule bscan-purged-files-test
Eric Bollengier [Thu, 3 Dec 2020 13:44:22 +0000 (14:44 +0100)] 
regress: Schedule bscan-purged-files-test

3 years agoregress: Add bscan test for purged files
Michal Rakowski [Thu, 3 Dec 2020 11:16:39 +0000 (12:16 +0100)] 
regress: Add bscan test for purged files

3 years agoImprove bscan so that it reinserts file records after prunning
Michal Rakowski [Thu, 3 Dec 2020 05:58:29 +0000 (06:58 +0100)] 
Improve bscan so that it reinserts file records after prunning

3 years agoFix #7113 Enable timestamp in tracefile for SD
Alain Spineux [Wed, 2 Dec 2020 15:17:54 +0000 (16:17 +0100)] 
Fix #7113 Enable timestamp in tracefile for SD