there is a script that calls commands which are for internal use only.
this patch rename the script as according purpose
Change-Id: Iacea3beae4fdab364ec7be35ab640a3eb076cb02
+++ /dev/null
-from __future__ import print_function
-import aurum_pb2
-import aurum_pb2_grpc
-import logging
-import grpc
-
-def run():
- with grpc.insecure_channel('127.0.0.1:50051') as channel:
- stub = aurum_pb2_grpc.BootstrapStub(channel)
- stub.killServer(aurum_pb2.ReqEmpty())
-
-if __name__ == '__main__':
- logging.basicConfig()
- run()
\ No newline at end of file
--- /dev/null
+from __future__ import print_function
+from aurum_pb2 import *
+import aurum_pb2_grpc
+import logging
+import grpc
+
+def run():
+ with grpc.insecure_channel('127.0.0.1:50051') as channel:
+ stub = aurum_pb2_grpc.BootstrapStub(channel)
+
+ print(stub.sync(ReqEmpty()))
+ print(stub.getDeviceTime(ReqGetDeviceTime(type='WALLCLOCK')))
+# stub.killServer(aurum_pb2.ReqEmpty())
+
+if __name__ == '__main__':
+ logging.basicConfig()
+ run()