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 4bbca90 commit e56e60eCopy full SHA for e56e60e
src/epsilon/server/instances/routes.rs
@@ -27,9 +27,10 @@ pub async fn create(
27
"Failed to create an instance from template ({})",
28
template
29
))
30
- })?;
+ })
31
+ .unwrap();
32
- let result = serde_json::to_string(&instance.to_json().await?).unwrap();
33
+ let result = serde_json::to_string(&instance.to_json().await.unwrap()).unwrap();
34
35
info!("An instance has been created (template={})", template);
36
info!("Create {}", result);
0 commit comments