Skip to content

Commit

Permalink
Cuebot setChannel log supports old Python versions (#1126)
Browse files Browse the repository at this point in the history
  • Loading branch information
roulaoregan-spi committed Apr 20, 2022
1 parent 36f32fd commit 7647841
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pycue/opencue/cuebot.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,9 @@ def setChannel():
else:
connectStr = '%s:%s' % (
host, Cuebot.Config.get('cuebot.grpc_port', DEFAULT_GRPC_PORT))
logger.debug('connecting to gRPC at %s', connectStr)
# pylint: disable=logging-not-lazy
logger.debug('connecting to gRPC at %s' % connectStr)
# pylint: enable=logging-not-lazy
# TODO(bcipriano) Configure gRPC TLS. (Issue #150)
try:
Cuebot.RpcChannel = grpc.intercept_channel(
Expand Down

0 comments on commit 7647841

Please sign in to comment.