Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion .github/workflows/streaming-jakarta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
with:
go-version: '${{ matrix.go-version }}'

- name: Verify Examples
- name: Verify
shell: bash
run: |
go get google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.3.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/streaming.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
with:
go-version: '${{ matrix.go-version }}'

- name: Verify Examples
- name: Verify
shell: bash
run: |
go get google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.3.0
Expand Down
3 changes: 1 addition & 2 deletions coherence/processors/processors.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2022, 2024 Oracle and/or its affiliates.
* Copyright (c) 2022, 2025 Oracle and/or its affiliates.
* Licensed under the Universal Permissive License v 1.0 as shown at
* https://oss.oracle.com/licenses/upl.
*/
Expand All @@ -15,7 +15,6 @@ import (
const (
processorPrefix = "processor."
extractorPrefix = "extractor."
queuePrefix = "internal.net.queue.processor."

compositeProcessorType = processorPrefix + "CompositeProcessor"
conditionalProcessorType = processorPrefix + "ConditionalProcessor"
Expand Down
3 changes: 2 additions & 1 deletion test/e2e/perf/suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,8 @@ func InitializeCoherence(ctx context.Context, address string) (Config, error) {
)

// create a new Session to the default gRPC port of 1408 using plain text
config.Session, err = coherence.NewSession(ctx, coherence.WithPlainText(), coherence.WithAddress(address))
config.Session, err = coherence.NewSession(ctx, coherence.WithPlainText(), coherence.WithAddress(address),
coherence.WithRequestTimeout(300*time.Minute))
if err != nil {
return config, err
}
Expand Down
7 changes: 1 addition & 6 deletions test/e2e/queues/queues_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2024 Oracle and/or its affiliates.
* Copyright (c) 2024, 2025 Oracle and/or its affiliates.
* Licensed under the Universal Permissive License v 1.0 as shown at
* https://oss.oracle.com/licenses/upl.
*/
Expand Down Expand Up @@ -455,11 +455,6 @@ func runTestQueueCompatability(g *gomega.WithT, queueName string, firstQueueType
g.Expect(queue.Destroy(ctx)).ShouldNot(gomega.HaveOccurred())

utils.Sleep(5)

//g.Expect(errorOccurred).To(gomega.Equal(shouldError))
//if !shouldError {
// g.Expect(queue.Destroy(ctx)).ShouldNot(gomega.HaveOccurred())
//}
}

func testQueue(ctx context.Context, g *gomega.WithT, queue coherence.NamedQueue[string]) {
Expand Down
4 changes: 1 addition & 3 deletions test/e2e/streaming/streaming_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,6 @@ var (
func TestStreamingConcurrency(t *testing.T) {
g := gomega.NewWithT(t)

_ = os.Setenv("COHERENCE_CLIENT_REQUEST_TIMEOUT", "300000")

osCacheCount := os.Getenv("COHERENCE_CACHE_COUNT")
if os.Getenv(osCacheCount) != "" {
v, err := strconv.Atoi(osCacheCount)
Expand All @@ -58,7 +56,7 @@ func TestStreamingConcurrency(t *testing.T) {
}
}

session, err := utils.GetSession()
session, err := utils.GetSession(coherence.WithRequestTimeout(5 * time.Minute))
g.Expect(err).ShouldNot(gomega.HaveOccurred())
defer session.Close()

Expand Down
Loading