Skip to content

Commit

Permalink
Bug fix. Sleep removal introduced a directory bug (microsoft#2296)
Browse files Browse the repository at this point in the history
  • Loading branch information
rajan-chari authored Apr 5, 2024
1 parent 0c0f953 commit c0d6a48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/apps/cap/py/autogencap/DirectorySvc.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def _no_other_directory(self) -> bool:
Debug("DirectorySvc", "Pinging existing DirectorySvc")
ping = Ping()
serialized_msg = ping.SerializeToString()
_, _, resp = self._directory_connector.binary_request(Ping.__name__, serialized_msg, retry=0)
_, _, resp = self._directory_connector.binary_request(Ping.__name__, serialized_msg, retry=1)
if resp is None:
return True
return False
Expand Down

0 comments on commit c0d6a48

Please sign in to comment.