Skip to content

Release v5.0.1 - #152

Merged
oseasandrepro merged 5 commits into
mainfrom
release-v5.0.1
Sep 11, 2026
Merged

oseasandrepro merged 5 commits into
mainfrom
release-v5.0.1

Conversation

@oseasandrepro

Copy link
Copy Markdown
Owner

refactor: adjust tests
refactor: remove bloking action from server start method
refactor: load cert and key files for ssl context just once

Now the server side script should be like this:

import time
from srpc_calc_server_stub import SrpcCalcServerStub

srpc_server = SrpcCalcServerStub()
srpc_server.start()

try:
   # Mantém a thread principal viva apenas esperando o Ctrl+C
   while True:
       time.sleep(1)
except KeyboardInterrupt:
   srpc_server.stop()

oseasandrepro and others added 5 commits September 11, 2026 01:56
Minor adjusts on server

 refactor: adjust tests
 refactor: remove bloking action from server start method
 refactor: load cert and key files for ssl context just once
 
 Now the server side script should be like this:
 ```python
 import time
from srpc_calc_server_stub import SrpcCalcServerStub

srpc_server = SrpcCalcServerStub()
srpc_server.start()

try:
    # Mantém a thread principal viva apenas esperando o Ctrl+C
    while True:
        time.sleep(1)
except KeyboardInterrupt:
    srpc_server.stop()

 ```
@oseasandrepro
oseasandrepro merged commit 9f8f316 into main Sep 11, 2026
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant