From 8050d4ba58f2190adc2fde8c564106d1ffeb4832 Mon Sep 17 00:00:00 2001 From: meelahme Date: Mon, 9 Jun 2025 12:10:30 -0700 Subject: [PATCH] minor updates --- content/shared/influxdb3-cli/test/schedule_plugin.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/shared/influxdb3-cli/test/schedule_plugin.md b/content/shared/influxdb3-cli/test/schedule_plugin.md index 0266aa9c4..10aee669a 100644 --- a/content/shared/influxdb3-cli/test/schedule_plugin.md +++ b/content/shared/influxdb3-cli/test/schedule_plugin.md @@ -78,7 +78,7 @@ influxdb3 test schedule_plugin \ --schedule "0 0 * * * ?" \ PLUGIN_DIR/FILENAME.py ``` -- `--input-arguments` accepts comma-separated key=value pairs. -- `--schedule` expects a Quartz cron expression; e.g., "0 0 * * * ?" runs at the top of every hour. +- Pass plugin parameters using `--input-arguments` as comma-separated key=value pairs. +- Use `--schedule` to set the plugin’s execution time with a Quartz cron expression. For example, "0 0 * * * ?" runs the plugin at the start of every hour. {{% /code-placeholders %}}