We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7877fd commit 3f028cfCopy full SHA for 3f028cf
src/routes/environment.py
@@ -64,10 +64,10 @@ async def update_environment(
64
## Args
65
```
66
environment_id: str
67
- becho: models.Becho JSON
+ environment: models.Environment JSON
68
69
"""
70
- with tracer.start_as_current_span("update_becho"):
+ with tracer.start_as_current_span("update_environment"):
71
controller = EnvironmentController()
72
return await controller.put_environment_by_id(
73
environment_id, environment
@@ -82,7 +82,7 @@ async def delete_environment(environment_id: str) -> None:
82
83
``` environment_id: str ```
84
85
- with tracer.start_as_current_span("delete_becho"):
+ with tracer.start_as_current_span("delete_environment"):
86
87
return await controller.delete_environment_by_id(environment_id)
88
0 commit comments