lam-cli 1.0.0__tar.gz → 1.0.1__tar.gz
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.
- {lam_cli-1.0.0 → lam_cli-1.0.1}/PKG-INFO +1 -1
- {lam_cli-1.0.0 → lam_cli-1.0.1}/lam/engines/javascript.py +3 -3
- {lam_cli-1.0.0 → lam_cli-1.0.1}/lam_cli.egg-info/PKG-INFO +1 -1
- {lam_cli-1.0.0 → lam_cli-1.0.1}/setup.py +1 -1
- {lam_cli-1.0.0 → lam_cli-1.0.1}/CHANGELOG.md +0 -0
- {lam_cli-1.0.0 → lam_cli-1.0.1}/DOCS.md +0 -0
- {lam_cli-1.0.0 → lam_cli-1.0.1}/LICENSE +0 -0
- {lam_cli-1.0.0 → lam_cli-1.0.1}/MANIFEST.in +0 -0
- {lam_cli-1.0.0 → lam_cli-1.0.1}/README.md +0 -0
- {lam_cli-1.0.0 → lam_cli-1.0.1}/lam/__init__.py +0 -0
- {lam_cli-1.0.0 → lam_cli-1.0.1}/lam/core.py +0 -0
- {lam_cli-1.0.0 → lam_cli-1.0.1}/lam/engines/__init__.py +0 -0
- {lam_cli-1.0.0 → lam_cli-1.0.1}/lam/engines/base.py +0 -0
- {lam_cli-1.0.0 → lam_cli-1.0.1}/lam/engines/jq.py +0 -0
- {lam_cli-1.0.0 → lam_cli-1.0.1}/lam/engines/python.py +0 -0
- {lam_cli-1.0.0 → lam_cli-1.0.1}/lam/lam.py +0 -0
- {lam_cli-1.0.0 → lam_cli-1.0.1}/lam/utils.py +0 -0
- {lam_cli-1.0.0 → lam_cli-1.0.1}/lam_cli.egg-info/SOURCES.txt +0 -0
- {lam_cli-1.0.0 → lam_cli-1.0.1}/lam_cli.egg-info/dependency_links.txt +0 -0
- {lam_cli-1.0.0 → lam_cli-1.0.1}/lam_cli.egg-info/entry_points.txt +0 -0
- {lam_cli-1.0.0 → lam_cli-1.0.1}/lam_cli.egg-info/requires.txt +0 -0
- {lam_cli-1.0.0 → lam_cli-1.0.1}/lam_cli.egg-info/top_level.txt +0 -0
- {lam_cli-1.0.0 → lam_cli-1.0.1}/requirements.txt +0 -0
- {lam_cli-1.0.0 → lam_cli-1.0.1}/setup.cfg +0 -0
|
@@ -226,12 +226,12 @@ class BunEngine(Engine):
|
|
|
226
226
|
logger.info("Started Bun process PID %d", process.pid)
|
|
227
227
|
|
|
228
228
|
try:
|
|
229
|
-
output, error = process.communicate(timeout=
|
|
229
|
+
output, error = process.communicate(timeout=30)
|
|
230
230
|
logger.debug("Process completed with code %d", process.returncode)
|
|
231
231
|
except subprocess.TimeoutExpired as e:
|
|
232
|
-
logger.warning("Process timeout after
|
|
232
|
+
logger.warning("Process timeout after 30 seconds")
|
|
233
233
|
process.kill()
|
|
234
|
-
return {"lam.error": "Script execution timed out"}, "Execution timed out after
|
|
234
|
+
return {"lam.error": "Script execution timed out"}, "Execution timed out after 30 seconds"
|
|
235
235
|
|
|
236
236
|
# Handle process errors
|
|
237
237
|
if process.returncode != 0:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|