lam-cli 1.0.0__py3-none-any.whl → 1.0.1__py3-none-any.whl

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/engines/javascript.py CHANGED
@@ -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=5)
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 5 seconds")
232
+ logger.warning("Process timeout after 30 seconds")
233
233
  process.kill()
234
- return {"lam.error": "Script execution timed out"}, "Execution timed out after 5 seconds"
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:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: lam-cli
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: Secure data transformation tool supporting JQ and JavaScript (Bun)
5
5
  Home-page: https://github.com/laminar-run/lam
6
6
  Author: Laminar Run, Inc.
@@ -4,12 +4,12 @@ lam/lam.py,sha256=Ge7nqJwqysTEIuVLYW0ECl34PT3mNvA_yWnZ1keg9lo,5065
4
4
  lam/utils.py,sha256=l98xstNeiz7JdAhbwkaEwJTi2KSPnMxluS5ObUM4Bm4,626
5
5
  lam/engines/__init__.py,sha256=o7DFSvAE0GQ2BOewiqFLAEjU_3LmWQLhaPrnfs1mLmw,809
6
6
  lam/engines/base.py,sha256=I4UIfzqkRwdGIyW98GPXgxLsqNqjes0Mqx01DdCO2ho,1980
7
- lam/engines/javascript.py,sha256=DIyjzrgMo0pEENsOHflhnstEpu_74rBwyIEffYXPuYo,10828
7
+ lam/engines/javascript.py,sha256=GmkiOFu-lTiuOgG2hp7w0wA2A1k0JP70YYUoBwz6D9g,10831
8
8
  lam/engines/jq.py,sha256=jnm8w9s9CRtiSW_JzfgQWyapNnQGrYw8EDZGUGJoDjY,2565
9
9
  lam/engines/python.py,sha256=iJpk2NVVGoLmQbnNEsiKuy8GxaYgOLFUnqF9Pyzo8ng,32134
10
- lam_cli-1.0.0.dist-info/licenses/LICENSE,sha256=ixuiBLtpoK3iv89l7ylKkg9rs2GzF9ukPH7ynZYzK5s,35148
11
- lam_cli-1.0.0.dist-info/METADATA,sha256=MfEKmeB19-fsTeAIZinh0y9nHA0DiXPsxMlSjkSkd4I,8437
12
- lam_cli-1.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
13
- lam_cli-1.0.0.dist-info/entry_points.txt,sha256=iJSsJitcGMikKJ3Q9KNWxEy911oTrSxGSO1HiwcBrKE,40
14
- lam_cli-1.0.0.dist-info/top_level.txt,sha256=WyM7-Ig60qQH9meqS293pEd83jrMtbvGJM8ALZOQCtA,4
15
- lam_cli-1.0.0.dist-info/RECORD,,
10
+ lam_cli-1.0.1.dist-info/licenses/LICENSE,sha256=ixuiBLtpoK3iv89l7ylKkg9rs2GzF9ukPH7ynZYzK5s,35148
11
+ lam_cli-1.0.1.dist-info/METADATA,sha256=Z7PkEayqvqOmz_-mx2805TaDfM_xlHHlha3WikeoUk4,8437
12
+ lam_cli-1.0.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
13
+ lam_cli-1.0.1.dist-info/entry_points.txt,sha256=iJSsJitcGMikKJ3Q9KNWxEy911oTrSxGSO1HiwcBrKE,40
14
+ lam_cli-1.0.1.dist-info/top_level.txt,sha256=WyM7-Ig60qQH9meqS293pEd83jrMtbvGJM8ALZOQCtA,4
15
+ lam_cli-1.0.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.9.0)
2
+ Generator: setuptools (80.10.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5