Running wrapper {"command": "/opt/conda/bin/python3 -u /opt/nuclio/_nuclio_wrapper.py --handler main:handler --socket-path /tmp/nuclio-rpc-cipbe4b85k6ne6scq1gg.sock --platform-kind local --namespace nuclio --worker-id 0 --trigger-kind http --trigger-name myHttpTrigger --decode-event-strings"} /opt/nuclio/_nuclio_wrapper.py:395: DeprecationWarning: There is no current event loop loop = asyncio.get_event_loop() {"datetime": "2023-07-15 15:11:13,541", "level": "error", "message": "Caught unhandled exception while initializing", "with": {"err": "'return' outside function (main.py, line 64)", "traceback": "Traceback (most recent call last):\n File \"/opt/nuclio/_nuclio_wrapper.py\", line 400, in run_wrapper\n wrapper_instance = Wrapper(root_logger,\n File \"/opt/nuclio/_nuclio_wrapper.py\", line 71, in __init__\n self._entrypoint = self._load_entrypoint_from_handler(handler)\n File \"/opt/nuclio/_nuclio_wrapper.py\", line 195, in _load_entrypoint_from_handler\n module = __import__(module_name)\n File \"/opt/nuclio/main.py\", line 64\n return context.Response(body=json.dumps(results), headers={},\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\nSyntaxError: 'return' outside function\n", "worker_id": "0"}} 23.07.15 15:11:13.550 sor.http.w0.python.logger (E) Unexpected termination of child process {"error": null, "status": "exit status 1"} panic: Wrapper process for worker 0 exited unexpectedly with: exit status 1 goroutine 13 [running]: github.com/nuclio/nuclio/pkg/processor/runtime/rpc.(*AbstractRuntime).watchWrapperProcess(0xc0007f4300) /nuclio/pkg/processor/runtime/rpc/abstract.go:471 +0x445 created by github.com/nuclio/nuclio/pkg/processor/runtime/rpc.(*AbstractRuntime).startWrapper /nuclio/pkg/processor/runtime/rpc/abstract.go:244 +0x1c5 /nuclio/pkg/platform/local/platform.go:1168 Failed to deploy function ...//nuclio/pkg/platform/abstract/platform.go:197
时间: 2023-08-05 21:05:07 浏览: 181
Virtex-5EMAC.rar_嵌入式/单片机/硬件编程_PDF_
根据你提供的日志,出现了一些错误和异常。主要的错误是在`main.py`文件的第64行,出现了`SyntaxError: 'return' outside function`的语法错误。这意味着在函数外部使用了`return`关键字,导致语法错误。
请确保在你的代码中,`return`语句只在函数内部使用。如果你想在函数外部返回结果,可以考虑使用其他方式,例如将结果存储在全局变量中或者使用其他适当的方法。
另外,还有一些其他的警告和错误,包括`DeprecationWarning: There is no current event loop`警告和`Unexpected termination of child process`错误。这些错误可能与代码的其他部分有关,建议仔细检查代码并确保正确处理和捕获异常。
最后,根据日志的最后一行,显示了一个`Failed to deploy function`的错误消息,这可能意味着函数部署失败。可能需要进一步调试和检查代码、依赖项以及部署环境的配置。
希望这些信息对你有帮助。如果你需要进一步的帮助,请提供更多的上下文和代码细节。
阅读全文