influxdata / influxdata/ui

Tasks: history view does not refresh.

Open
#3,780 0 comments 0 reactions 0 assignees View on GitHub
kind/bug severity/sev-4 team/automation team/ui team/unity
Dominant language
TypeScript
Stars
117
Forks
51
Avg merge
2d 15h
Merged PRs (30d)
4

Description

## About the bug

**Steps to reproduce:**
1. Create a notebook alert.
2. Enter an endpoint. (I used a local http server.)
3. export to task.
4. Go to Tasks > select your notebook task.
5. watch as the notifications are sent, but the page is not refreshed.
6. manually refresh the page. it's there.

.

**Expected behavior:**
Tasks page to refresh.

.

**Actual behavior:**
Not refreshed.

.

**Visual Proof:**
Before page refresh:
Screen Shot 2022-02-04 at 4 13 23 PM

After refresh:
Screen Shot 2022-02-04 at 4 29 55 PM

## About your environment

**Setup:**
* simple node server
```
const express = require('express')
const app = express()
const port = 80

app.get('/', (req, res) => {
res.send('Hello World!')
})

app.post('/', (req,res) => {
console.log(`POST at ${(new Date()).toString()}`)
res.send('Post received')
})

app.listen(port, '0.0.0.0', () => {
console.log(`Example app listening at http://0.0.0.0:${port}`)
})
```
* endpoint set to my external IP
* port forwarding on router to my internal IP
* tested and works.

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.