功能超时

编程入门 行业动态 更新时间:2024-10-25 12:27:37
本文介绍了功能超时的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我是Azure函数的新手.我用Java编写了一个简单的函数来做到这一点-

I am new to Azure functions. I wrote a simple function in Java that does this -

JsonObject response = new JsonObject(); response.addProperty("os.name", System.getProperty("os.name")); response.addProperty("os.arch", System.getProperty("os.arch")); response.addProperty("os.version", System.getProperty("os.version")); String res = response.toString(); HttpResponseMessage<String> httpResponse = request.createResponse(200, res); httpResponse.addHeader(HEADER_CONTENT_TYPE, APPLICATION_JSON); return httpResponse;

现在正在超时.有人可以建议我看什么,然后尝试诊断为什么会超时吗?

And it is timing out. Can someone please advise on what I should look at to try and diagnose why this is timing out?

谢谢!

推荐答案

可以在此处或 Can you please share you app name either here orSharing-Your-Function-App-name-privately

更多推荐

功能超时

本文发布于:2023-11-28 07:51:44,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1641548.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:功能

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!