feat(drive_monitor): comment out deprecated check_gbot call
The check_gbot function call in DriveMonitor's run method has been commented out with a TODO note, indicating it's deprecated and should be removed. This is likely part of cleaning up unused or outdated functionality while keeping the codebase functional. The gbdialog changes check remains active.
This commit is contained in:
parent
c281e1ce7e
commit
f1aae91d82
1 changed files with 1 additions and 1 deletions
|
|
@ -44,7 +44,7 @@ impl DriveMonitor {
|
|||
None => return Ok(()),
|
||||
};
|
||||
self.check_gbdialog_changes(client).await?;
|
||||
self.check_gbot(client).await?;
|
||||
// TODO: Remove self.check_gbot(client).await?;
|
||||
Ok(())
|
||||
}
|
||||
async fn check_gbdialog_changes(&self, client: &Client) -> Result<(), Box<dyn Error + Send + Sync>> {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue