gnetclisdk 1.1.1__tar.gz → 1.1.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of gnetclisdk might be problematic. Click here for more details.
- {gnetclisdk-1.1.1 → gnetclisdk-1.1.2}/PKG-INFO +1 -1
- {gnetclisdk-1.1.1 → gnetclisdk-1.1.2}/gnetclisdk/starter.py +4 -7
- {gnetclisdk-1.1.1 → gnetclisdk-1.1.2}/gnetclisdk.egg-info/PKG-INFO +1 -1
- {gnetclisdk-1.1.1 → gnetclisdk-1.1.2}/MANIFEST.in +0 -0
- {gnetclisdk-1.1.1 → gnetclisdk-1.1.2}/README.md +0 -0
- {gnetclisdk-1.1.1 → gnetclisdk-1.1.2}/gnetclisdk/auth.py +0 -0
- {gnetclisdk-1.1.1 → gnetclisdk-1.1.2}/gnetclisdk/client.py +0 -0
- {gnetclisdk-1.1.1 → gnetclisdk-1.1.2}/gnetclisdk/config.py +0 -0
- {gnetclisdk-1.1.1 → gnetclisdk-1.1.2}/gnetclisdk/exceptions.py +0 -0
- {gnetclisdk-1.1.1 → gnetclisdk-1.1.2}/gnetclisdk/interceptors.py +0 -0
- {gnetclisdk-1.1.1 → gnetclisdk-1.1.2}/gnetclisdk/proto/server_pb2.py +0 -0
- {gnetclisdk-1.1.1 → gnetclisdk-1.1.2}/gnetclisdk/proto/server_pb2.pyi +0 -0
- {gnetclisdk-1.1.1 → gnetclisdk-1.1.2}/gnetclisdk/proto/server_pb2_grpc.py +0 -0
- {gnetclisdk-1.1.1 → gnetclisdk-1.1.2}/gnetclisdk.egg-info/SOURCES.txt +0 -0
- {gnetclisdk-1.1.1 → gnetclisdk-1.1.2}/gnetclisdk.egg-info/dependency_links.txt +0 -0
- {gnetclisdk-1.1.1 → gnetclisdk-1.1.2}/gnetclisdk.egg-info/requires.txt +0 -0
- {gnetclisdk-1.1.1 → gnetclisdk-1.1.2}/gnetclisdk.egg-info/top_level.txt +0 -0
- {gnetclisdk-1.1.1 → gnetclisdk-1.1.2}/pyproject.toml +0 -0
- {gnetclisdk-1.1.1 → gnetclisdk-1.1.2}/requirements.txt +0 -0
- {gnetclisdk-1.1.1 → gnetclisdk-1.1.2}/setup.cfg +0 -0
- {gnetclisdk-1.1.1 → gnetclisdk-1.1.2}/setup.py +0 -0
|
@@ -51,10 +51,9 @@ class GnetcliStarter:
|
|
|
51
51
|
async def _wait_url(self) -> str:
|
|
52
52
|
while proc := self._proc:
|
|
53
53
|
output = await proc.stderr.readline()
|
|
54
|
-
if not output and proc.returncode is not None:
|
|
55
|
-
break
|
|
56
54
|
if not output:
|
|
57
|
-
|
|
55
|
+
logger.debug("stop waiting url, eof found")
|
|
56
|
+
break
|
|
58
57
|
logger.debug("gnetcli output: %s", output.strip())
|
|
59
58
|
try:
|
|
60
59
|
data = json.loads(output)
|
|
@@ -88,11 +87,9 @@ class GnetcliStarter:
|
|
|
88
87
|
async def _communicate(self) -> None:
|
|
89
88
|
while proc := self._proc:
|
|
90
89
|
output = await proc.stderr.readline()
|
|
91
|
-
if not output and proc.returncode is not None:
|
|
92
|
-
logger.debug("stop reading, gnetcli terminated")
|
|
93
|
-
return
|
|
94
90
|
if not output:
|
|
95
|
-
|
|
91
|
+
logger.debug("stop reading, eof found")
|
|
92
|
+
return
|
|
96
93
|
logger.debug("gnetcli output: %s", output.strip())
|
|
97
94
|
|
|
98
95
|
async def _terminate(self) -> None:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|