You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.
The old go-etcd client was configured to make all requests with "strong" consistency. This means that all "GET" requests would be redirected the etcd leader. The new etcd client does not have the same concept of "strong" consistency. This means that all requests first hit the configured endpoint, possibly being redirected. GET requests are no longer blindly redirected to the leader.
During the fleetctl start command, the Job is created then the Job's target state is set. Before the target state is set, the code attempts to GET the job. If fleetctl is not configured to talk to the leader, this GET operation may fail, as the logs are not guaranteed to have been sync'd to the local etcd endpoint.
The text was updated successfully, but these errors were encountered:
The old go-etcd client was configured to make all requests with "strong" consistency. This means that all "GET" requests would be redirected the etcd leader. The new etcd client does not have the same concept of "strong" consistency. This means that all requests first hit the configured endpoint, possibly being redirected. GET requests are no longer blindly redirected to the leader.
During the
fleetctl start
command, the Job is created then the Job's target state is set. Before the target state is set, the code attempts to GET the job. If fleetctl is not configured to talk to the leader, this GET operation may fail, as the logs are not guaranteed to have been sync'd to the local etcd endpoint.The text was updated successfully, but these errors were encountered: