Skip to content

Issues Connecting to SPOT. #129

Answered by te5msride
te5msride asked this question in Q&A
Aug 16, 2023 · 1 comments · 3 replies
Discussion options

You must be logged in to vote

It looks like this was a workaround that ended up working
I changed the following code of wrapper.py:

if HAVE_CHOREOGRAPHY:
    if self._license_client.get_feature_enabled([ChoreographyClient.license_name])[ChoreographyClient.license_name]:
        self._is_licensed_for_choreography = True
        self._choreography_client = self._robot.ensure_client(ChoreographyClient.default_service_name)
    else:
        self._logger.info(f"Robot is not licensed for choreography: {e}")
        ...

to:

if HAVE_CHOREOGRAPHY:
    try:
        if self._license_client.get_feature_enabled([ChoreographyClient.license_name])[ChoreographyClient.license_name]:
            self._is_licensed_for_choreography = T…

Replies: 1 comment 3 replies

Comment options

You must be logged in to vote
3 replies
@te5msride
Comment options

@te5msride
Comment options

Answer selected by te5msride
@heuristicus
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants