Re: [PATCH v3 6/8] scalar: enable built-in FSMonitor on `register`
From: Derrick Stolee <hidden>
Date: 2022-08-19 18:44:46
From: Derrick Stolee <hidden>
Date: 2022-08-19 18:44:46
On 8/18/2022 5:40 PM, Matthew John Cheetham via GitGitGadget wrote:
From: Matthew John Cheetham <redacted> Using the built-in FSMonitor makes many common commands quite a bit faster. So let's teach the `scalar register` command to enable the built-in FSMonitor and kick-start the fsmonitor--daemon process (for convenience).
+static int have_fsmonitor_support(void)
+{
+ return fsmonitor_ipc__is_supported() &&
+ fsm_settings__get_reason(the_repository) == FSMONITOR_REASON_OK;
+}The only thing I needed to check was that the_repository was initialized properly as part of 'scalar clone' and it indeed is. Thanks, -Stolee