Skip to content

Commit

Permalink
faq.po 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
KSP authored and KSP committed May 3, 2020
1 parent 9ec11a9 commit 1cd6431
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion faq.html
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ <h3><a class="toc-backref" href="#id3"><code class="docutils literal notranslate
<h3><a class="toc-backref" href="#id4">《blocking》의 뜻이 뭔가요?</a><a class="headerlink" href="#what-does-blocking-mean" title="제목 주소"></a></h3>
<p>비동기 프로그래밍에서 호출 차단은 <code class="docutils literal notranslate"><span class="pre">await</span></code> 이 아닌 모든 함수의 본질적인 부분입니다. 그래도 걱정하지 마세요. 호출 차단은 항상 나쁜 것은 아니랍니다. 호출 차단을 사용하는 것은 불가피하지만, 당신은 과도하게 함수의 호출을 차단하지 않도록 해야 합니다. 기억하세요. 만약 너무 오랫동안 차단된다면 당신의 봇은 다른 일을 하기 위해 그 시점에서 함수의 실행을 중단하지 않았기 때문에 멈출 것입니다.</p>
<p>로깅이 활성화되었다면, 이 라이브러리는 당신에게 메시지의 차단이 일어나고 있다고 경고할 것입니다: <code class="docutils literal notranslate"><span class="pre">Heartbeat</span> <span class="pre">blocked</span> <span class="pre">for</span> <span class="pre">more</span> <span class="pre">than</span> <span class="pre">N</span> <span class="pre">seconds.</span></code> <a class="reference internal" href="logging.html#logging-setup"><span class="std std-ref">로깅 설정</span></a> 을 참고하여 로깅을 활성화하는 방법에 대해 자세히 알아보세요.</p>
<p>호출을 너무 오랫동안 차단하는 대표적인 원인은 <a class="reference external" href="https://docs.python.org/3/library/time.html#time.sleep" title="(in Python v3.8)"><code class="xref py py-func docutils literal notranslate"><span class="pre">time.sleep()</span></code></a> 입니다.:func:<cite>asyncio.sleep</cite> 을 대신 사용하세요. 아래의 예시를 참고하세요:</p>
<p>호출을 너무 오랫동안 차단하는 대표적인 원인은 <a class="reference external" href="https://docs.python.org/3/library/time.html#time.sleep" title="(in Python v3.8)"><code class="xref py py-func docutils literal notranslate"><span class="pre">time.sleep()</span></code></a> 입니다. <a class="reference external" href="https://docs.python.org/3/library/asyncio-task.html#asyncio.sleep" title="(in Python v3.8)"><code class="xref py py-func docutils literal notranslate"><span class="pre">asyncio.sleep()</span></code></a>을 대신 사용하세요. 아래의 예시를 참고하세요:</p>
<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="c1"># bad</span>
<span class="n">time</span><span class="o">.</span><span class="n">sleep</span><span class="p">(</span><span class="mi">10</span><span class="p">)</span>

Expand Down
2 changes: 1 addition & 1 deletion searchindex.js

Large diffs are not rendered by default.

0 comments on commit 1cd6431

Please sign in to comment.