Skip to content

Commit

Permalink
acquire fqdn from env
Browse files Browse the repository at this point in the history
Signed-off-by: kta-intel <[email protected]>
  • Loading branch information
kta-intel committed Oct 30, 2024
1 parent 7ec8c74 commit 240ec94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/github/test_task_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from subprocess import check_call
from concurrent.futures import ProcessPoolExecutor

from openfl.utilities.utils import rmtree
from openfl.utilities.utils import rmtree, getfqdn_env
from tests.github.utils import create_collaborator, initialize_and_certify_workspace, certify_aggregator


Expand All @@ -28,7 +28,7 @@
args = parser.parse_args()
workspace = args.workspace
archive_name = f'{workspace}.zip'
fqdn = socket.getfqdn()
fqdn = getfqdn_env()
rounds_to_train = args.rounds_to_train
col1, col2 = args.col1, args.col2
col1_data_path, col2_data_path = args.col1_data_path, args.col2_data_path
Expand Down

0 comments on commit 240ec94

Please sign in to comment.