Skip to content

Commit

Permalink
Fix python checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
timoninmaxim committed Jul 23, 2024
1 parent 3d315f5 commit 2e12877
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ class ThinClientQueryTest(IgniteTest):
to use with ssl enabled:
export GLOBALS='{"ssl":{"enabled":true}}' .
"""
JAVA_CLIENT_CLASS_NAME = "org.apache.ignite.internal.ducktest.tests.thin_client_query_test.ThinClientQueryTestApplication"

@cluster(num_nodes=3)
@ignite_versions(str(DEV_BRANCH), version_prefix="server_version")
@matrix(filter=[False, True])
Expand All @@ -57,11 +55,13 @@ def test_thin_client_index_query(self, server_version, filter):

addresses = [ignite.nodes[0].account.hostname + ":" + str(server_config.client_connector_configuration.port)]

cls = "org.apache.ignite.internal.ducktest.tests.thin_client_query_test.ThinClientQueryTestApplication"

thin_clients = IgniteApplicationService(self.test_context,
IgniteThinClientConfiguration(
addresses=addresses,
version=IgniteVersion(str(DEV_BRANCH))),
java_class_name=self.JAVA_CLIENT_CLASS_NAME,
java_class_name=cls,
num_nodes=1,
params={"filter": filter})

Expand Down Expand Up @@ -92,5 +92,4 @@ def envs(self):

envs["EXCLUDE_MODULES"] = "ducktests"

return envs

return envs

0 comments on commit 2e12877

Please sign in to comment.