diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2021-06-04 11:28:00 +0200 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2021-06-04 12:51:43 +0200 |
commit | 86610c7852ee992d6c0b89d4a5cd70081950951d (patch) | |
tree | be991c56c812934af43fe1b21aaee35eb822e8d0 /test | |
parent | b64e20a53d3f5de262f2c475be490b35977d5f32 (diff) | |
download | podman-86610c7852ee992d6c0b89d4a5cd70081950951d.tar.gz podman-86610c7852ee992d6c0b89d4a5cd70081950951d.tar.bz2 podman-86610c7852ee992d6c0b89d4a5cd70081950951d.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.bats | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/system/090-events.bats b/test/system/090-events.bats index 09c2d0c10..52936d7a0 100644 --- a/test/system/090-events.bats +++ b/test/system/090-events.bats @@ -27,7 +27,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 @@ -86,7 +86,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 "" } |