Skip to content

Commit

Permalink
disable streaming by default (#6818)
Browse files Browse the repository at this point in the history
  • Loading branch information
senecameeks authored Dec 6, 2024
1 parent e61e3be commit 35733fd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cirq-google/cirq_google/engine/engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ def __init__(
timeout: Optional[int] = None,
serializer: Serializer = CIRCUIT_SERIALIZER,
# TODO(#5996) Remove enable_streaming once the feature is stable.
enable_streaming: bool = True,
# TODO(#6817): Reenable streaming by default once there's a fix.
enable_streaming: bool = False,
) -> None:
"""Context and client for using Quantum Engine.
Expand Down

0 comments on commit 35733fd

Please sign in to comment.