Skip to content

Commit eec89fc

Browse files
committed
Allowing grm to parse urls with protocols
1 parent 4067a0e commit eec89fc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/mbed_os_tools/test/host_tests_runner/host_test_default.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,8 @@ def match_log(self, line):
570570

571571
@staticmethod
572572
def _parse_grm(grm_arg):
573-
grm_module, grm_host, grm_port = grm_arg.split(':')
573+
grm_module, leftover = grm_arg.split(':', 1)
574+
grm_host, grm_port = leftover.rsplit(':', 1)
574575

575576
return {
576577
"grm_module" : grm_module,

0 commit comments

Comments
 (0)