aidevops 3.13.73 → 3.13.74
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/agent-runtime.sh +3 -2
- package/setup.sh +1 -1
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.13.
|
|
1
|
+
3.13.74
|
package/aidevops.sh
CHANGED
package/package.json
CHANGED
|
@@ -256,7 +256,8 @@ deploy_agents_to_runtimes() {
|
|
|
256
256
|
# cannot be passed directly to the `timeout` binary. Instead we run it in a
|
|
257
257
|
# background subshell and poll for completion with a configurable wall-clock
|
|
258
258
|
# deadline. When the deadline expires the subshell is killed with SIGTERM then
|
|
259
|
-
# SIGKILL and
|
|
259
|
+
# SIGKILL and this non-critical step is treated as a warning so setup can
|
|
260
|
+
# continue after core deployment has already succeeded.
|
|
260
261
|
#
|
|
261
262
|
# Configurable via AIDEVOPS_DEPLOY_RUNTIMES_TIMEOUT (default 120s).
|
|
262
263
|
_deploy_agents_to_runtimes_bounded() {
|
|
@@ -275,7 +276,7 @@ _deploy_agents_to_runtimes_bounded() {
|
|
|
275
276
|
kill -KILL "$_pid" 2>/dev/null || true
|
|
276
277
|
wait "$_pid" 2>/dev/null || true
|
|
277
278
|
print_warning "Runtime agent deployment exceeded ${timeout_s}s — skipping (non-critical)"
|
|
278
|
-
return
|
|
279
|
+
return 0
|
|
279
280
|
fi
|
|
280
281
|
sleep 1
|
|
281
282
|
done
|
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.13.
|
|
15
|
+
# Version: 3.13.74
|
|
16
16
|
#
|
|
17
17
|
# Quick Install:
|
|
18
18
|
# npm install -g aidevops && aidevops update (recommended)
|