Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix int test #2745

Merged
merged 2 commits into from
Feb 1, 2025
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 runtime/config-deployer-service/ballerina/APIClient.bal
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import wso2/apk_common_lib as commons;

public class APIClient {

# This function used to convert APKInternalAPI model to APKConf.
# This function to convert APKInternalAPI model to APKConf.
#
# + api - APKInternalAPI model
# + return - APKConf model.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ isolated service http:InterceptableService /api/deployer on ep0 {
}

public function createInterceptors() returns http:Interceptor|http:Interceptor[] {
http:Interceptor[] interceptors = [jwtValidationInterceptor, requestErrorInterceptor, responseErrorInterceptor];
http:Interceptor[] interceptors = [requestErrorInterceptor, responseErrorInterceptor];
return interceptors;
}
}
2 changes: 1 addition & 1 deletion test/integration/scripts/run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,4 @@ sudo echo "255.255.255.255 broadcasthost" | sudo tee -a /etc/hosts
sudo echo "::1 localhost" | sudo tee -a /etc/hosts

# Run tests
go test -timeout 25m -v integration_test.go
go test -v integration_test.go -timeout 0