Rodrigo Albuquerque

Results 5 issues of Rodrigo Albuquerque

``` > version 1.6.0 > list-models bah mymodel ``` Job is initially waiting: ``` > list-jobs id name state x/N time_left duration 2148faaf-b7b8-436a-82d0-d9b91d74c9ea training(bah) waiting 496.464 cancel-job 2148faaf-b7b8-436a-82d0-d9b91d74c9ea ERROR:root:TransportError(500, 'internal...

# Description Fairly simple. I was testing opsdroid behind a proxy with HTTP_PROXY/HTTPS_PROXY configured and it was timing out. Added trust_env=True to aiohttp.ClientSession and it solved the problem. Reference: https://docs.aiohttp.org/en/stable/client_reference.html

connector
connector/slack

# Description When start-thread: true in configuration.yaml, replies using regular text or Blocks() construct end up inside of the thread, which is expected. However, if the Blocks() construct has a...

bug

``` def remove(self, value): n = self.head last = None while n != None: if n.value == value: if last == None: self.head = self.head.next else: last.next = n.next return...

# Description Started opsdroid: ```shell opsdroid_test@opsdroid_test-6ccd79897-7tds7:~$ opsdroid start -f configuration.yaml Opsdroid has a new configuration format since version 0.17.0. Please read on how to migrate in the documentation at https://docs.opsdroid.dev/en/stable/configuration.html#migrate-to-new-configuration-layout....