summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorValentin Rothberg <rothberg@redhat.com>2021-06-04 11:28:00 +0200
committerMatthew Heon <mheon@redhat.com>2021-06-11 13:06:07 -0400
commit5a158563c05ea533d95b73793462941bbea01281 (patch)
treee4bad3df73c1fafc2caafd93c63d7464da604c27 /test
parent38fbd2cb9edbe232d6ec7c8b107c50bab34da8e5 (diff)
downloadpodman-5a158563c05ea533d95b73793462941bbea01281.tar.gz
podman-5a158563c05ea533d95b73793462941bbea01281.tar.bz2
podman-5a158563c05ea533d95b73793462941bbea01281.zip
remote events: fix --stream=false
Fix a bug in remote events where only one event would be sent if when streaming is turned off. The source of the bug was that the handler attempted to implement the streaming logic and did it wrong. The fix is rather simple by removing this logic from the handler and let the events backend handle streaming. Fixes: #10529 Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'test')
-rw-r--r--test/system/090-events.bats4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/system/090-events.bats b/test/system/090-events.bats
index 7948cd1e6..d889bd7f9 100644
--- a/test/system/090-events.bats
+++ b/test/system/090-events.bats
@@ -26,7 +26,7 @@ load helpers
}
@test "image events" {
- skip_if_remote "FIXME: remove events on podman-remote seem to be broken"
+ skip_if_remote "remote does not support --events-backend"
pushedDir=$PODMAN_TMPDIR/dir
mkdir -p $pushedDir
@@ -85,7 +85,5 @@ function _events_disjunctive_filters() {
}
@test "events with disjunctive filters - default" {
- # NOTE: the last event for bar doesn't show up reliably.
- skip_if_remote "FIXME #10529: remote events lose data"
_events_disjunctive_filters ""
}