Quantcast
Channel: Configuration - Home Assistant Community
Viewing all 106481 articles
Browse latest View live

HA - MQTT Add-on + Fully Kiosk Browser MQTT

$
0
0

@poudenes wrote:

Hi All,

Can someone help me out. I add MQTT Add-on in HA. Everything work great!! lights, system info from other RPi’s etc…

In Fully Kiosk Browser you can enable MQTT as well. The MQTT Broker URL must look like:

tcp://192.168.100.76:1883

But it won’t connect. Connection failed.

Can someone tell me how to solve this?

Tried other ways:

mqtt://192.168.100.76:1883

192.168.100.76:1883

Didn’t work as well…

Cheers

Posts: 1

Participants: 1

Read full topic


Definition of a "device" in the device registry

$
0
0

@incaseoftrouble wrote:

Hey folks,

I’m crossposting from reddit, since the forums seem to be a more sensible place to ask this question. I’m unsure about what exactly constitutes a “device” in HA. Let me elaborate with an example.

I’m using homeassistant for some time now and I’m slowing adding my own appliances, in particular DIY ESP8266-based things. I’m connecting these devices via MQTT + autodiscovery. So far, all my (physical) devices were single-purpose, single-location, so no issue arose. Now, I’m adding a shutter controller which resides in the electrical cabinet (I’m not sure whether this is the correct word, I’m not a native) and switches several relays controlling shutters at various locations in my house.

Here comes the question: How do I map this scenario correctly into HAs device registry? I’m unsure about the definition of “device” (see Device Registry), since the controller (ESP) and the shutters are in distinct locations. I see three options sort of compatible with the documentation:

  1. Each shutter motor (which is just a dumb device) is a separate device + a single entity
  2. Each shutter is a different device + I add the ESP chip as via_device without any entity attached to it. (or rather 1.b)
  3. The ESP is the device, the shutter motors only are entities.

The docs don’t seem to be too clear on this topic. In practice probably all of these options work, but I’m a bit obsessed with doing things the “right way” :smiley:

EDIT: Made the title a bit clearer.

Posts: 3

Participants: 2

Read full topic

Disc_use_percent does not update anymore (systemmonitor platform)

$
0
0

@adandl wrote:

Hello All!

Not sure for how long, but my disk_use_percent sensor (systemmonitor) does not update anymore periodically. The other sensors in this group work fine.

Disk_use_percent would update once okay when homeassistant starts…
Manual update via service call does not work either and I don’t see any log-entries

Any suggestions?

ps.: hassio running on IntelNUC

- platform: systemmonitor
    resources:
      - type: disk_use_percent
        arg: /
      - type: memory_free
      - type: load_15m
      - type: processor_use
      - type: last_boot

Posts: 1

Participants: 1

Read full topic

Node Red API error

$
0
0

@Vlak5364 wrote:

Dear folks, I am new with Home assistant, which is why I find it easy to install Node-red. so fare so good.
but now i want to make a flow but i get the same Api error every time. See picture

Can someone tell me what I am doing wrong or what I should be looking at. thanks

Posts: 1

Participants: 1

Read full topic

Get entity_id of the template switch that I am programming

$
0
0

@Viktors_Linovs wrote:

I have this setup for template switch:

      template_light:
        friendly_name: Template switch
        value_template: "{{ is_state('binary_sensor.template_light_sensor', 'on') }}"
        turn_on:
          - service_template: >
              {% if is_state('switch.template_light', 'off') %} 
                switch.toggle
              {% endif %}
            data:
              entity_id:
                switch.light_switch
        turn_off:
          - service_template: >
              {% if is_state('switch.template_light', 'on') %} 
                switch.toggle
              {% endif %}
            data:
              entity_id:
                switch.light_switch

I have 25 this template switches and it is a pain to change - {% if is_state(‘switch.template_light’, ‘on’) %} for every template switch I have. Is there a way to call the entity_id of this switch like this:

{% if is_state({this.entity_id}, 'on') %} 

so I want the {this.entity_id} to return the string - ‘template_light’

Thank you!

Posts: 2

Participants: 2

Read full topic

Smart 3 way switch and Manual switch

$
0
0

@Carlos_AP wrote:

Hello. I’m a newbie in this world and am seeking your smart guidance! I have a treatlife 3-way smart switch which I flashed with Tasmota and hooked up to Home Assistant. All works fine with manual switch in terms of turning on and off. Problem is that if I turn on lights with Smart switch and turn off with manual switch it still shows as “on” in HA. Is there any way to detect lights are off and toggle HA switch to off? TIA

Posts: 1

Participants: 1

Read full topic

Cannot access NABU CASA url at work!

$
0
0

@Phillip wrote:

I am at work (which has a proxy). Whenever i try to log in from there it fails with this screen:

image

Is this something i can solve without IT getting involved? Its not like the URL is blocked, it just fails to log in.

When I check home assistant after attempting to log in I get this persistent notification that a log in attempt from 127.0.0.1:

Posts: 1

Participants: 1

Read full topic

Impossible to schedule getting JSON results at a certain time?

$
0
0

@mrand wrote:

At a high level, I’m trying to do a POST using a SSL cert and capture the JSON result. In the spirit of being efficient, I’ve gone looking for how to schedule such a thing once per day (results are available at noon) rather than blindly polling it 2 or 3 times a day.

First off, the only way I know to do a POST using a specific SSL cert is via curl. I’m open to other options if that helps with the solution.

Here is a simplified example of what I’m doing:

- platform: command_line
  name: NameName
  value_template: ''{{ value_json.returned_value }}"
  scan_interval: #### actually only want to do this at noon each day
  command:  >-
    /usr/bin/curl https://URL/
    --lots-o-arguments
    --data \' {
                 \"date\" : \"{{ states("sensor.yesterday_usa") }} \"
    } \'

I could probably launch the curl command from cron rather than HA (although getting yesterday’s date inside the JSON might be a bit annoying… maybe use python rather than curl), but I’m trying to use this as an opportunity to learn HA better.

The best I can come up with is

  1. automation launches shell command service, which saves JSON output to file
  2. Use file sensor to import that JSON

It’s like I need a combination of shell command service and command_line sensor.

Posts: 1

Participants: 1

Read full topic


External access without port

$
0
0

@WhiteAss wrote:

I’ve configured external access whit duckdns. So far so good.

But at work alternative ports are blocked. so I can’t connect to 8123, 443 etc. Is it possible to connect to home assistant without using a portnr?
now:
[my_domain].duckdns.org:443
then:
HA.[my_domain].duckdns.org
[my_domain].duckdns.org/HA

Or does someone have another solution (other than Home Assistant Cloud).

Posts: 2

Participants: 2

Read full topic

iFan03 Tasmota with Alexa

$
0
0

@vghugari wrote:

Hi All,

I like to integrate my iFAN03 device with Alexa. However no succes

My Configration is as below

configration.yaml

cloud:
fan:
  - platform: mqtt  
    name: "hfan"
    command_topic: "hfan/cmnd/FanSpeed"
    speed_command_topic: "hfan/cmnd/FanSpeed"    
    state_topic: "hfan/stat/RESULT"
    speed_state_topic: "hfan/stat/RESULT"
    state_value_template: >
      {% if value_json.FanSpeed is defined %}
        {% if value_json.FanSpeed == 0 -%}0{%- elif value_json.FanSpeed > 0 -%}4{%- endif %}
      {% else %}
        {% if states.hfan.state == 'off' -%}0{%- elif states.hfan.state == 'on' -%}4{%- endif %}
      {% endif %}
    speed_value_template: "{{ value_json.FanSpeed }}"
    availability_topic: hfan/tele/LWT
    payload_off: "0"
    payload_on: "4"
    payload_low_speed: "1"
    payload_medium_speed: "2"
    payload_high_speed: "3"
    payload_available: Online
    payload_not_available: Offline
    speeds:
      - off
      - low
      - medium
      - high

Posts: 1

Participants: 1

Read full topic

Issue with androidtv.adb_command to open HULU app on Fire Stick 4K

$
0
0

@STHAudio wrote:

Hey all!

I am working on revamping my lovelace UI to mimic an actual touch panel, and I have successfully created a ‘Netflix button’ that will open the Netflix App on my Fire Stick 4K.

I want to add a ‘HULU button’ as well, so I added the same code except I changed the app id to ‘com.hulu.livingroomplus’ and no dice! I also saw that there is another app id for HULU, ‘com.hulu.plus’, I tried this as well and it doesn’t work either.

I am unsure what I am missing here - below is my config entry, and my lovelaceui entry. For clarity - my lovelaceui is done by using picture-elements with images & tap-actions.

Any thoughts and or ideas??

- platform: androidtv
    name: "Fire TV"
    device_class: firetv
    host: 10.20.18.14
    port: 5555
    adb_server_ip: 127.0.0.1
    adb_server_port: 5037
    apps:
      com.netflix.ninja: "Netflix"
      com.hulu.livingroomplus: "HULU"
      com.amazon.avod: "Amazon Video"
#HULU Button
          - entity: media_player.fire_tv
            image: /local/hulu_logo.png
            style:
              left: 20%
              top: 60%
              width: 20%
            tap_action:
              action: call-service
              service: androidtv.adb_command
              service_data:
                command: am start -a android.intent.action.VIEW -d -n com.hulu.livingroomplus/.MainActivity
                entity_id: media_player.fire_tv
            type: image

Posts: 1

Participants: 1

Read full topic

Consolidated Notification Content

$
0
0

@HA5525 wrote:

So I’m drowning in notifications. This is of my own doing and I would love to find a solution.

I use email as my notification method but this would apply to any such as slack etc.

I have my automations setup so that whenever an important event happens (side door open / motion detected living room) and we are not home I get a notification. I would like to be able to have one notification with event information over the last 60 seconds (configurable).

Example email I would like to receive


4/24/2020 16 : 00 : 00
Side door opened

4/24/2020 16 : 00 : 04 (+ 4 sec)
Motion detected garage

4/24/2020 16 : 00 : 10 (+ 6 sec)
Motion detected living room

4/24/2020 16 : 00 : 50 (+ 40 sec)
Security system disabled with correct code


When something important happens I would like to put that text into a stack / hopper somewhere. New events / text are added to the stack.

If there is no additional activity on the stack for say 60 seconds I would like to send that stack as a notification. That gives me one notification for the larger “event” of someone coming home or whatever.

I’m not sure how to accomplish this.

Thanks!!

Posts: 2

Participants: 2

Read full topic

Aqara sensors on ZHA always say 100% of battery reaming

$
0
0

@Guillermo_Yanez wrote:

Hello everyone,
I have the following detail that is somewhat annoying, since several versions back from home assistant, my aqara sensors always report 100% battery, I really do not remember which was the last version where the battery level was displayed correctly, but it was More than 8 months ago, as I mentioned in the beginning, they worked fine without problem, and in each update of the home assistant I hope it will be fixed, but it has not happened.
It happens to someone else or they have an idea of what configuration I should review so that they operate correctly, attached image of a pair of them both should be below 60% life …

Posts: 1

Participants: 1

Read full topic

Notification if moves

$
0
0

@Csepi wrote:

Dear Community,

I want to create the following:
Someone is staying in a place for hours. I want to get notify if he starting to move out of the place 20m radius.

  • A script should create a temporary zone from the coordinates and 20m radius, and if the person got out the area, notify me and delete the zone.

Do anyone have related knowledge? Like how to create zone and delete it from script, or set notification listener/automation and delete them if event fired?

I haven’t programmed anything in HASS, but I feel the time has come :slight_smile:

Best: Peter

Posts: 2

Participants: 1

Read full topic

Problem with round()

$
0
0

@naamah75 wrote:

I’m facing with a strange behaviour using round() in template… using the following code

{{ states('sensor.template_pzem_004t') | float * 0.001 }}
{{ states('sensor.template_pzem_004t') | float * 0.001 | round(4) }}
{{ states('sensor.template_pzem_004t') | float * 0.001 | round(3) }}
{{ states('sensor.template_pzem_004t') | float * 0.001 | round(2) }}
{{ states('sensor.template_pzem_004t') | float * 0.001 | round(1) }}
{{ states('sensor.template_pzem_004t') | float * 0.001 | round(0) }}

I get the following results:

0.33727
0.33727
0.33727
0.0
0.0
0.0

… where’s the problem?

Posts: 5

Participants: 3

Read full topic


Pollen Allergy: please help kick start web scraping pollen online page (Italy)

$
0
0

@PieBru wrote:

Hi all,
this page https://www.3bmeteo.com/meteo/venezia/pollini has daily updated detailed pollen data for my area, so I would like to scrape it to extract some important data for my family and me.

Looking at the page source, the interesting table seems to be inside this /div (sorry, I don’t speak HTML):

table table-border-v table-previsioni table-previsioni-ora border-bottom"

but I can’t figure out how to scrape+handle it automatically in HASS.

Someone can help me kick-start this in the right way?
Thank you,
Piero

Posts: 1

Participants: 1

Read full topic

Suddenly can't add nodes

$
0
0

@SnapETom wrote:

I have about a dozen Jasco/GE light switches connected to a Aeotec USB Z-Stick on a Raspberry Pi 3b+. For a while, they were working great with Homeassistant. After several breaking changes, I just decided to completely reinstall HA and do things the “right way” using the ZWave option on the configuration menu.

I’ve ran into an issue where I can’t add more than 7 devices. Things that were well in range before now cannot be added.

When I click Add Node, journalctl reports:

Apr 24 01:55:29 pibox hass[1148]: 2020-04-24 01:55:29 INFO (SyncWorker_9) [homeassistant.components.zwave] Z-Wave add_node have been initialized
Apr 24 02:02:02 pibox hass[1148]: 2020-04-24 02:02:02 INFO (MainThread) [homeassistant.components.websocket_api.http.connection.1594965840] Connection closed by client
Apr 24 02:03:19 pibox hass[1148]: 2020-04-24 02:03:19 ERROR (MainThread) [homeassistant.core] Error doing job: SSL error in data received
Apr 24 02:03:19 pibox hass[1148]: Traceback (most recent call last):
Apr 24 02:03:19 pibox hass[1148]:   File "/usr/local/lib/python3.7/asyncio/sslproto.py", line 526, in data_received
Apr 24 02:03:19 pibox hass[1148]:     ssldata, appdata = self._sslpipe.feed_ssldata(data)
Apr 24 02:03:19 pibox hass[1148]:   File "/usr/local/lib/python3.7/asyncio/sslproto.py", line 207, in feed_ssldata
Apr 24 02:03:19 pibox hass[1148]:     self._sslobj.unwrap()
Apr 24 02:03:19 pibox hass[1148]:   File "/usr/local/lib/python3.7/ssl.py", line 767, in unwrap
Apr 24 02:03:19 pibox hass[1148]:     return self._sslobj.shutdown()
Apr 24 02:03:19 pibox hass[1148]: ssl.SSLError: [SSL: KRB5_S_INIT] application data after close notify (_ssl.c:2609)
Apr 24 02:03:19 pibox hass[1148]: 2020-04-24 02:03:19 INFO (MainThread) [homeassistant.components.websocket_api.http.connection.1594612784] Connection closed by client

And OZW_Log reports:

2020-04-24 01:55:29.021 Detail, Queuing (Controller) Add Device
2020-04-24 01:55:29.022 Info, Add Device
2020-04-24 01:55:29.022 Detail, contrlr, Queuing (Command) ControllerCommand_AddDevice: 0x01, 0x05, 0x00, 0x4a, 0xc1, 0x3a, 0x4b
2020-04-24 01:55:29.022 Detail, Notification: ControllerCommand - Starting
2020-04-24 01:55:29.023 Detail,
2020-04-24 01:55:29.023 Info, contrlr, Sending (Command) message (Callback ID=0x3a, Expected Reply=0x4a) - ControllerCommand_AddDevice: 0x01, 0x05, 0x00, 0x4a, 0xc1, 0x3a, 0x4b
2020-04-24 01:55:29.027 Detail, contrlr,   Received: 0x01, 0x07, 0x00, 0x4a, 0x3a, 0x01, 0x00, 0x00, 0x89
2020-04-24 01:55:29.027 Detail,
2020-04-24 01:55:29.027 Info, contrlr, FUNC_ID_ZW_ADD_NODE_TO_NETWORK:
2020-04-24 01:55:29.028 Info, contrlr, ADD_NODE_STATUS_LEARN_READY
2020-04-24 01:55:29.028 Detail, Node001,   Expected callbackId was received
2020-04-24 01:55:29.028 Detail, Node001,   Expected reply was received
2020-04-24 01:55:29.028 Detail, Node001,   Message transaction complete
2020-04-24 01:55:29.028 Detail,
2020-04-24 01:55:29.028 Detail, contrlr, Removing current message
2020-04-24 01:55:29.028 Detail, Notification: ControllerCommand - Waiting
2020-04-24 01:55:29.031 Info, WriteNextMsg Controller nothing to do

And nothing. This timeout actually puts either homeassistant or OpenZWave into this blocked state. If I try to turn things on and off, I can see OpenZWave keep sending out commands, but nothing actually happens to the lights.

2020-04-24 02:05:55.869 Info, Node007, Value::Set - COMMAND_CLASS_SWITCH_BINARY - Switch - 0 - 1 - False
2020-04-24 02:05:55.869 Info, Node007, SwitchBinary::Set - Setting node 7 to Off
2020-04-24 02:05:55.869 Detail, Node007, Queuing (Send) SwitchBinaryCmd_Set (Node=7): 0x01, 0x0a, 0x00, 0x13, 0x07, 0x03, 0x25, 0x01, 0x00, 0x25, 0x3d, 0xde
2020-04-24 02:05:55.869 Detail, Node007, Queuing (Send) SwitchBinaryCmd_Get (Node=7): 0x01, 0x09, 0x00, 0x13, 0x07, 0x02, 0x25, 0x02, 0x25, 0x3e, 0xdc

Any idea what’s going on? This is quite frustrating because everything was working fine for years, so I doubt it’s a signal strength issue.

Raspbian Buster
Raspberry Pi 3b+
Python 3.7.3
HA running in a virtual environment

Posts: 1

Participants: 1

Read full topic

Display Sensor in Grafana with mulitple states

Cloud Config error

$
0
0

@nithino wrote:

I use voice assistants, through Nabu Casa. Since this evening, I have come across a strange issue in Hassio where I consistently see a notification indicating problems with default_config, and cloud. I can no longer see cloud integration in the configuration panel, and cannot control my entities with Alexa. Apart from that, I have not found any problems with Homeassistant. I can control everything locally. I am kind of a newbie in this, and the log I have checked hardly make any sense. Can anybody help?

I run Hassio on RPi

Traceback (most recent call last):
  File "/usr/local/lib/python3.7/site-packages/urllib3/connectionpool.py", line 677, in urlopen
    chunked=chunked,
  File "/usr/local/lib/python3.7/site-packages/urllib3/connectionpool.py", line 426, in _make_request
    six.raise_from(e, None)
  File "<string>", line 3, in raise_from
  File "/usr/local/lib/python3.7/site-packages/urllib3/connectionpool.py", line 421, in _make_request
    httplib_response = conn.getresponse()
  File "/usr/local/lib/python3.7/http/client.py", line 1344, in getresponse
    response.begin()
  File "/usr/local/lib/python3.7/http/client.py", line 306, in begin
    version, status, reason = self._read_status()
  File "/usr/local/lib/python3.7/http/client.py", line 275, in _read_status
    raise RemoteDisconnected("Remote end closed connection without"
http.client.RemoteDisconnected: Remote end closed connection without response

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/usr/local/lib/python3.7/site-packages/botocore/httpsession.py", line 263, in send
    chunked=self._chunked(request.headers),
  File "/usr/local/lib/python3.7/site-packages/urllib3/connectionpool.py", line 725, in urlopen
    method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
  File "/usr/local/lib/python3.7/site-packages/urllib3/util/retry.py", line 379, in increment
    raise six.reraise(type(error), error, _stacktrace)
  File "/usr/local/lib/python3.7/site-packages/urllib3/packages/six.py", line 734, in reraise
    raise value.with_traceback(tb)
  File "/usr/local/lib/python3.7/site-packages/urllib3/connectionpool.py", line 677, in urlopen
    chunked=chunked,
  File "/usr/local/lib/python3.7/site-packages/urllib3/connectionpool.py", line 426, in _make_request
    six.raise_from(e, None)
  File "<string>", line 3, in raise_from
  File "/usr/local/lib/python3.7/site-packages/urllib3/connectionpool.py", line 421, in _make_request
    httplib_response = conn.getresponse()
  File "/usr/local/lib/python3.7/http/client.py", line 1344, in getresponse
    response.begin()
  File "/usr/local/lib/python3.7/http/client.py", line 306, in begin
    version, status, reason = self._read_status()
  File "/usr/local/lib/python3.7/http/client.py", line 275, in _read_status
    raise RemoteDisconnected("Remote end closed connection without"
urllib3.exceptions.ProtocolError: ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/usr/src/homeassistant/homeassistant/setup.py", line 171, in _async_setup_component
    hass, processed_config
  File "/usr/src/homeassistant/homeassistant/components/cloud/__init__.py", line 234, in async_setup
    await cloud.start()
  File "/usr/local/lib/python3.7/site-packages/hass_nabucasa/__init__.py", line 237, in start
    await self.client.logged_in()
  File "/usr/src/homeassistant/homeassistant/components/cloud/client.py", line 113, in logged_in
    await self.alexa_config.async_enable_proactive_mode()
  File "/usr/src/homeassistant/homeassistant/components/alexa/config.py", line 55, in async_enable_proactive_mode
    await self._unsub_proactive_report
  File "/usr/src/homeassistant/homeassistant/components/alexa/state_report.py", line 26, in async_enable_proactive_mode
    await smart_home_config.async_get_access_token()
  File "/usr/src/homeassistant/homeassistant/components/cloud/alexa_config.py", line 114, in async_get_access_token
    resp = await cloud_api.async_alexa_access_token(self._cloud)
  File "/usr/local/lib/python3.7/site-packages/hass_nabucasa/cloud_api.py", line 16, in check_token
    await cloud.auth.async_check_token()
  File "/usr/local/lib/python3.7/site-packages/hass_nabucasa/auth.py", line 174, in async_check_token
    await self._async_renew_access_token()
  File "/usr/local/lib/python3.7/site-packages/hass_nabucasa/auth.py", line 201, in _async_renew_access_token
    await self.cloud.run_executor(cognito.renew_access_token)
  File "/usr/local/lib/python3.7/concurrent/futures/thread.py", line 57, in run
    result = self.fn(*self.args, **self.kwargs)
  File "/usr/local/lib/python3.7/site-packages/pycognito/__init__.py", line 620, in renew_access_token
    AuthParameters=auth_params,
  File "/usr/local/lib/python3.7/site-packages/botocore/client.py", line 357, in _api_call
    return self._make_api_call(operation_name, kwargs)
  File "/usr/local/lib/python3.7/site-packages/botocore/client.py", line 648, in _make_api_call
    operation_model, request_dict, request_context)
  File "/usr/local/lib/python3.7/site-packages/botocore/client.py", line 667, in _make_request
    return self._endpoint.make_request(operation_model, request_dict)
  File "/usr/local/lib/python3.7/site-packages/botocore/endpoint.py", line 102, in make_request
    return self._send_request(request_dict, operation_model)
  File "/usr/local/lib/python3.7/site-packages/botocore/endpoint.py", line 137, in _send_request
    success_response, exception):
  File "/usr/local/lib/python3.7/site-packages/botocore/endpoint.py", line 231, in _needs_retry
    caught_exception=caught_exception, request_dict=request_dict)
  File "/usr/local/lib/python3.7/site-packages/botocore/hooks.py", line 356, in emit
    return self._emitter.emit(aliased_event_name, **kwargs)
  File "/usr/local/lib/python3.7/site-packages/botocore/hooks.py", line 228, in emit
    return self._emit(event_name, kwargs)
  File "/usr/local/lib/python3.7/site-packages/botocore/hooks.py", line 211, in _emit
    response = handler(**kwargs)
  File "/usr/local/lib/python3.7/site-packages/botocore/retryhandler.py", line 183, in __call__
    if self._checker(attempts, response, caught_exception):
  File "/usr/local/lib/python3.7/site-packages/botocore/retryhandler.py", line 251, in __call__
    caught_exception)
  File "/usr/local/lib/python3.7/site-packages/botocore/retryhandler.py", line 277, in _should_retry
    return self._checker(attempt_number, response, caught_exception)
  File "/usr/local/lib/python3.7/site-packages/botocore/retryhandler.py", line 317, in __call__
    caught_exception)
  File "/usr/local/lib/python3.7/site-packages/botocore/retryhandler.py", line 223, in __call__
    attempt_number, caught_exception)
  File "/usr/local/lib/python3.7/site-packages/botocore/retryhandler.py", line 359, in _check_caught_exception
    raise caught_exception
  File "/usr/local/lib/python3.7/site-packages/botocore/endpoint.py", line 200, in _do_get_response
    http_response = self._send(request)
  File "/usr/local/lib/python3.7/site-packages/botocore/endpoint.py", line 244, in _send
    return self.http_session.send(request)
  File "/usr/local/lib/python3.7/site-packages/botocore/httpsession.py", line 294, in send
    endpoint_url=request.url
botocore.exceptions.ConnectionClosedError: Connection was closed before we received a valid response from endpoint URL: "https://cognito-idp.us-east-1.amazonaws.com/".

Posts: 1

Participants: 1

Read full topic

RTSP Generic Camera Not loading

Viewing all 106481 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>