aidevops 3.8.96 → 3.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/VERSION +1 -1
- package/aidevops.sh +1 -1
- package/package.json +1 -1
- package/setup-modules/schedulers.sh +4 -4
- package/setup.sh +1 -1
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.
|
|
1
|
+
3.9.0
|
package/aidevops.sh
CHANGED
package/package.json
CHANGED
|
@@ -344,12 +344,12 @@ _install_supervisor_pulse() {
|
|
|
344
344
|
_pulse_interval_sec=$(_read_pulse_interval_seconds)
|
|
345
345
|
local _pulse_cron_schedule
|
|
346
346
|
_pulse_cron_schedule=$(_seconds_to_cron_schedule "$_pulse_interval_sec")
|
|
347
|
-
# Build a human-readable interval label: show
|
|
347
|
+
# Build a human-readable interval label: show minutes for exact multiples of 60, seconds otherwise
|
|
348
348
|
local _pulse_interval_label
|
|
349
|
-
if
|
|
350
|
-
_pulse_interval_label="$
|
|
349
|
+
if (( _pulse_interval_sec % 60 == 0 )); then
|
|
350
|
+
_pulse_interval_label="$((_pulse_interval_sec / 60)) min"
|
|
351
351
|
else
|
|
352
|
-
_pulse_interval_label="$
|
|
352
|
+
_pulse_interval_label="${_pulse_interval_sec}s"
|
|
353
353
|
fi
|
|
354
354
|
|
|
355
355
|
local _pulse_timeout_sec=$((PULSE_STALE_THRESHOLD_SECONDS + 60))
|
package/setup.sh
CHANGED
|
@@ -12,7 +12,7 @@ shopt -s inherit_errexit 2>/dev/null || true
|
|
|
12
12
|
# AI Assistant Server Access Framework Setup Script
|
|
13
13
|
# Helps developers set up the framework for their infrastructure
|
|
14
14
|
#
|
|
15
|
-
# Version: 3.
|
|
15
|
+
# Version: 3.9.0
|
|
16
16
|
#
|
|
17
17
|
# Quick Install:
|
|
18
18
|
# npm install -g aidevops && aidevops update (recommended)
|