Flask - Background Tasks
Identify the error in this Flask Redis subscription code:
```python
pubsub = redis_client.pubsub()
pubsub.subscribe('channel1')
message = pubsub.get_message()
print(message['data'])
```
If no message was published yet, what happens?
