Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Python3 ArmarX
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software
ArmarX
Python3 ArmarX
Commits
28333249
Commit
28333249
authored
2 years ago
by
Rainer Kartmann
Browse files
Options
Downloads
Patches
Plain Diff
Add flag to suppress error messages printed by get_proxy()
parent
1834bfb6
No related branches found
No related tags found
1 merge request
!28
Misc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
armarx_core/ice_manager.py
+9
-7
9 additions, 7 deletions
armarx_core/ice_manager.py
with
9 additions
and
7 deletions
armarx_core/ice_manager.py
+
9
−
7
View file @
28333249
import
os
import
time
import
logging
from
typing
import
Any
from
typing
import
TypeVar
import
typing
as
ty
from
functools
import
lru_cache
...
...
@@ -23,7 +21,7 @@ from .name_helper import get_ice_default_name
logger
=
logging
.
getLogger
(
__name__
)
T
=
TypeVar
(
"
T
"
)
T
=
ty
.
TypeVar
(
"
T
"
)
def
register_object
(
...
...
@@ -165,12 +163,13 @@ def wait_for_proxy(cls, proxy_name: str = None, timeout: int = 0):
time
.
sleep
(
0.1
)
def
get_proxy
(
cls
:
T
,
proxy_name
:
str
=
None
)
->
T
:
def
get_proxy
(
cls
:
T
,
proxy_name
:
str
=
None
,
not_exist_ok
=
False
)
->
ty
.
Optional
[
T
]
:
"""
Connects to a proxy.
:param cls: the class definition of an ArmarXComponent
:param proxy_name: name of the proxy
:param not_exist_ok: If true, do not print an error if the proxy does not exist.
:type proxy_name: str
:returns: the retrieved proxy
:rtype: an instance of cls
...
...
@@ -181,7 +180,10 @@ def get_proxy(cls: T, proxy_name: str = None) -> T:
proxy
=
freezer
().
communicator
.
stringToProxy
(
proxy_name
)
return
cls
.
checkedCast
(
proxy
)
except
NotRegisteredException
:
logging
.
exception
(
"
Proxy %s does not exist
"
,
proxy_name
)
if
not
not_exist_ok
:
logging
.
exception
(
"
Proxy %s does not exist
"
,
proxy_name
)
return
None
def
get_admin
():
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment