• /
  • EnglishEspañol日本語한국어Português
  • 로그인지금 시작하기

사용자의 편의를 위해 제공되는 기계 번역입니다.

영문본과 번역본이 일치하지 않는 경우 영문본이 우선합니다. 보다 자세한 내용은 이 페이지를 방문하시기 바랍니다.

문제 신고

sure_future(Python) 사용 시 정보 누락

문제

코루틴에서 asyncio.ensure_future 을 사용할 때 자세한 함수 추적 정보가 표시되지 않습니다.

해결책

ensure_future 에서 생성된 Future는 생성된 것과 동일한 코루틴에서 기다려야 합니다. 예를 들어, Before 섹션에서 awaitensure_future 과 함께 존재하지 않으므로 정보가 누락됩니다.

전에:

import asyncio
async def foo():
ensure_future(bar())
async def bar():
await asyncio.sleep(0.5)

후에:

import asyncio
async def foo():
await ensure_future(bar())
async def bar():
await asyncio.sleep(0.5)
Copyright © 2024 New Relic Inc.

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.