RabbitMQ - Clustering
Given the following RabbitMQ cluster setup code snippet, what will be the output if node1 fails?
cluster_nodes = ["rabbit@node1", "rabbit@node2", "rabbit@node3"]
message_published = True
if 'rabbit@node1' not in cluster_nodes:
message_published = False
print(message_published)