Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix IT
  • Loading branch information
attilakreiner committed Mar 11, 2024
commit 9213bac930ce6b09f7904314a310adaec0b975d7
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ connected
write http:method "POST"
write http:version "HTTP/1.1"
write http:header "Host" "localhost:4318"
write http:header "Content-Length" "439"
write http:header "Content-Length" "366"
write
'{'
'"resourceLogs":['
Expand All @@ -50,8 +50,6 @@ write
'{'
'"timeUnixNano":42000000,'
'"observedTimeUnixNano":42000000,'
'"traceId":"00000000000000008000000000000001",'
'"spanId":"0000000100000004",'
'"body":{'
'"stringValue":"test event message"'
'},'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ connected
read http:method "POST"
read http:version "HTTP/1.1"
read http:header "Host" "localhost:4318"
read http:header "Content-Length" "439"
read http:header "Content-Length" "366"
read
'{'
'"resourceLogs":['
Expand All @@ -51,8 +51,6 @@ read
'{'
'"timeUnixNano":42000000,'
'"observedTimeUnixNano":42000000,'
'"traceId":"00000000000000008000000000000001",'
'"spanId":"0000000100000004",'
'"body":{'
'"stringValue":"test event message"'
'},'
Expand Down
2 changes: 1 addition & 1 deletion incubator/exporter-otlp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<jacoco.coverage.ratio>0.75</jacoco.coverage.ratio>
<jacoco.coverage.ratio>0.90</jacoco.coverage.ratio>
<jacoco.missed.count>0</jacoco.missed.count>
</properties>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class EventIT

private final K3poRule k3po = new K3poRule()
.addScriptRoot("net", "io/aklivity/zilla/specs/engine/streams/network")
.addScriptRoot("app", "io/aklivity/zilla/specs/engine/streams/application");
.addScriptRoot("app", "io/aklivity/zilla/specs/exporter/otlp/application");

private final TestRule timeout = new DisableOnDebug(new Timeout(10, SECONDS));

Expand Down