-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fixes bug that breaks unix-socket connection. - Allows commands sent as unicode to be used. - Updated error messages for commands that timeout.
- Loading branch information
Showing
4 changed files
with
24 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
develop | ||
0.8.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
###### | ||
v0.8.1 | ||
###### | ||
|
||
2017-07-20 | ||
|
||
New Modules | ||
^^^^^^^^^^^ | ||
|
||
Enhancements | ||
^^^^^^^^^^^^ | ||
|
||
Fixed | ||
^^^^^ | ||
|
||
* hard coded /command-api was probably a safe default (`141 <https://github.com/arista-eosplus/pyeapi/issues/141>`_) | ||
This issue/PR (`142 <https://github.com/arista-eosplus/pyeapi/pull/142>`_) reverts a change that introduced a bug breaking pyeapi's unix-socket connection. Regardless of using TCP/IP or unix-socket for communicating with the EAPI process the data being sent to the process is formatted in HTTP requests. The HTTP requests should always POST to the /command-api endpoint. The change being reverted by this prevents the unix-socket path from ever erroneously being used as the HTTP endpoint. | ||
* Execute does not work well with long running commands (`138 <https://github.com/arista-eosplus/pyeapi/issues/138>`_) | ||
Added socket specific error messages in PR (`144 <https://github.com/arista-eosplus/pyeapi/pull/144>`_) to help distinguish errors caused by command timeouts. | ||
* eAPI does not handle commands sent as unicode strings (`137 <https://github.com/arista-eosplus/pyeapi/issues/137>`_) | ||
Bug fixed in PR (`139 <https://github.com/arista-eosplus/pyeapi/pull/139>`_) unicode commands converted to strings when detected. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters