Skip to content
This repository was archived by the owner on Mar 8, 2026. It is now read-only.

Commit 928926d

Browse files
committed
Remove examples-config.json and update port configurations across various example tests
- Deleted the examples-config.json file to streamline the examples directory. - Updated port configurations in multiple test files to ensure consistency, changing ports from 50054 and 50055 to 50056 and 50057 as needed. - Adjusted server startup messages to reflect the new port assignments for the media streaming and shopflow e-commerce services. These changes aim to enhance the organization and clarity of the example configurations in the project.
1 parent 3eddf0e commit 928926d

File tree

60 files changed

+63
-142
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+63
-142
lines changed

examples/advanced-examples/ai-chat/tests/advanced_nlp_conversation_bidirectional.gctf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--- ADDRESS ---
2-
localhost:50054
2+
localhost:50056
33

44
--- ENDPOINT ---
55
aichat.AIChatService/ChatConversation

examples/advanced-examples/ai-chat/tests/analyze_sentiment_unary.gctf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--- ADDRESS ---
2-
localhost:50054
2+
localhost:50056
33

44
--- ENDPOINT ---
55
aichat.AIChatService/AnalyzeSentiment

examples/advanced-examples/ai-chat/tests/chat_conversation_bidirectional_streaming.gctf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--- ADDRESS ---
2-
localhost:50054
2+
localhost:50056
33

44
--- ENDPOINT ---
55
aichat.AIChatService/ChatConversation

examples/advanced-examples/ai-chat/tests/context_aware_conversation_bidirectional.gctf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--- ADDRESS ---
2-
localhost:50054
2+
localhost:50056
33

44
--- ENDPOINT ---
55
aichat.AIChatService/ChatConversation

examples/advanced-examples/ai-chat/tests/create_chat_session_unary.gctf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--- ADDRESS ---
2-
localhost:50054
2+
localhost:50056
33

44
--- ENDPOINT ---
55
aichat.AIChatService/CreateChatSession

examples/advanced-examples/ai-chat/tests/multilingual_chat_advanced.gctf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--- ADDRESS ---
2-
localhost:50054
2+
localhost:50056
33

44
--- ENDPOINT ---
55
aichat.AIChatService/ChatConversation

examples/advanced-examples/ai-chat/tests/send_message_unary.gctf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--- ADDRESS ---
2-
localhost:50054
2+
localhost:50056
33

44
--- ENDPOINT ---
55
aichat.AIChatService/SendMessage

examples/advanced-examples/ai-chat/tests/stream_chat_server_streaming.gctf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--- ADDRESS ---
2-
localhost:50054
2+
localhost:50056
33

44
--- ENDPOINT ---
55
aichat.AIChatService/StreamChat

examples/advanced-examples/ai-chat/tests/streaming_response_chunked_server.gctf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--- ADDRESS ---
2-
localhost:50054
2+
localhost:50056
33

44
--- ENDPOINT ---
55
aichat.AIChatService/StreamChat

examples/advanced-examples/media-streaming/server/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -647,7 +647,7 @@ func (s *MediaStreamingServer) ProcessFile(stream mediapb.MediaStreamingService_
647647

648648
func main() {
649649
// Create listener
650-
lis, err := net.Listen("tcp", ":50055")
650+
lis, err := net.Listen("tcp", ":50057")
651651
if err != nil {
652652
log.Fatalf("Failed to listen: %v", err)
653653
}
@@ -660,7 +660,7 @@ func main() {
660660
mediapb.RegisterMediaStreamingServiceServer(s, mediaServer)
661661
reflection.Register(s)
662662

663-
fmt.Println("📺 Media Streaming Service is running on port 50055...")
663+
fmt.Println("📺 Media Streaming Service is running on port 50057...")
664664
fmt.Println("Available methods:")
665665
fmt.Println(" - UploadFile, DownloadFile, GetFileMetadata, UpdateFileMetadata")
666666
fmt.Println(" - DeleteFile, ListFiles, HealthCheck")

0 commit comments

Comments
 (0)