scylla-cqlsh 6.0.19__cp311-cp311-macosx_10_9_x86_64.whl → 6.0.21__cp311-cp311-macosx_10_9_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of scylla-cqlsh might be problematic. Click here for more details.
- copyutil.cpython-311-darwin.so +0 -0
- cqlsh/cqlsh.py +5 -11
- cqlshlib/_version.py +2 -2
- {scylla_cqlsh-6.0.19.dist-info → scylla_cqlsh-6.0.21.dist-info}/METADATA +1 -1
- {scylla_cqlsh-6.0.19.dist-info → scylla_cqlsh-6.0.21.dist-info}/RECORD +9 -9
- {scylla_cqlsh-6.0.19.dist-info → scylla_cqlsh-6.0.21.dist-info}/WHEEL +1 -1
- {scylla_cqlsh-6.0.19.dist-info → scylla_cqlsh-6.0.21.dist-info}/LICENSE.txt +0 -0
- {scylla_cqlsh-6.0.19.dist-info → scylla_cqlsh-6.0.21.dist-info}/entry_points.txt +0 -0
- {scylla_cqlsh-6.0.19.dist-info → scylla_cqlsh-6.0.21.dist-info}/top_level.txt +0 -0
copyutil.cpython-311-darwin.so
CHANGED
|
Binary file
|
cqlsh/cqlsh.py
CHANGED
|
@@ -478,7 +478,7 @@ class Shell(cmd.Cmd):
|
|
|
478
478
|
if protocol_version is not None:
|
|
479
479
|
kwargs['protocol_version'] = protocol_version
|
|
480
480
|
|
|
481
|
-
profiles = {
|
|
481
|
+
self.profiles = {
|
|
482
482
|
EXEC_PROFILE_DEFAULT: ExecutionProfile(consistency_level=cassandra.ConsistencyLevel.ONE,
|
|
483
483
|
request_timeout=request_timeout,
|
|
484
484
|
row_factory=ordered_dict_factory)
|
|
@@ -487,10 +487,10 @@ class Shell(cmd.Cmd):
|
|
|
487
487
|
if cloudconf is None:
|
|
488
488
|
if os.path.exists(self.hostname) and stat.S_ISSOCK(os.stat(self.hostname).st_mode):
|
|
489
489
|
kwargs['contact_points'] = (UnixSocketEndPoint(self.hostname),)
|
|
490
|
-
profiles[EXEC_PROFILE_DEFAULT].load_balancing_policy = WhiteListRoundRobinPolicy([UnixSocketEndPoint(self.hostname)])
|
|
490
|
+
self.profiles[EXEC_PROFILE_DEFAULT].load_balancing_policy = WhiteListRoundRobinPolicy([UnixSocketEndPoint(self.hostname)])
|
|
491
491
|
else:
|
|
492
492
|
kwargs['contact_points'] = (self.hostname,)
|
|
493
|
-
profiles[EXEC_PROFILE_DEFAULT].load_balancing_policy = WhiteListRoundRobinPolicy([self.hostname])
|
|
493
|
+
self.profiles[EXEC_PROFILE_DEFAULT].load_balancing_policy = WhiteListRoundRobinPolicy([self.hostname])
|
|
494
494
|
kwargs['port'] = self.port
|
|
495
495
|
kwargs['ssl_context'] = sslhandling.ssl_settings(hostname, CONFIG_FILE) if ssl else None
|
|
496
496
|
# workaround until driver would know not to lose the DNS names for `server_hostname`
|
|
@@ -503,7 +503,7 @@ class Shell(cmd.Cmd):
|
|
|
503
503
|
auth_provider=self.auth_provider,
|
|
504
504
|
control_connection_timeout=connect_timeout,
|
|
505
505
|
connect_timeout=connect_timeout,
|
|
506
|
-
execution_profiles=profiles,
|
|
506
|
+
execution_profiles=self.profiles,
|
|
507
507
|
**kwargs)
|
|
508
508
|
self.owns_connection = not use_conn
|
|
509
509
|
|
|
@@ -2140,10 +2140,6 @@ class Shell(cmd.Cmd):
|
|
|
2140
2140
|
kwargs['port'] = self.port
|
|
2141
2141
|
kwargs['ssl_context'] = self.conn.ssl_context
|
|
2142
2142
|
kwargs['ssl_options'] = self.conn.ssl_options
|
|
2143
|
-
if os.path.exists(self.hostname) and stat.S_ISSOCK(os.stat(self.hostname).st_mode):
|
|
2144
|
-
kwargs['load_balancing_policy'] = WhiteListRoundRobinPolicy([UnixSocketEndPoint(self.hostname)])
|
|
2145
|
-
else:
|
|
2146
|
-
kwargs['load_balancing_policy'] = WhiteListRoundRobinPolicy([self.hostname])
|
|
2147
2143
|
else:
|
|
2148
2144
|
kwargs['scylla_cloud'] = self.cloudconf
|
|
2149
2145
|
|
|
@@ -2152,6 +2148,7 @@ class Shell(cmd.Cmd):
|
|
|
2152
2148
|
auth_provider=auth_provider,
|
|
2153
2149
|
control_connection_timeout=self.conn.connect_timeout,
|
|
2154
2150
|
connect_timeout=self.conn.connect_timeout,
|
|
2151
|
+
execution_profiles=self.profiles,
|
|
2155
2152
|
**kwargs)
|
|
2156
2153
|
|
|
2157
2154
|
if self.current_keyspace:
|
|
@@ -2160,9 +2157,6 @@ class Shell(cmd.Cmd):
|
|
|
2160
2157
|
session = conn.connect()
|
|
2161
2158
|
|
|
2162
2159
|
# Copy session properties
|
|
2163
|
-
session.default_timeout = self.session.default_timeout
|
|
2164
|
-
session.row_factory = self.session.row_factory
|
|
2165
|
-
session.default_consistency_level = self.session.default_consistency_level
|
|
2166
2160
|
session.max_trace_wait = self.session.max_trace_wait
|
|
2167
2161
|
|
|
2168
2162
|
# Update after we've connected in case we fail to authenticate
|
cqlshlib/_version.py
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
copyutil.cpython-311-darwin.so,sha256=
|
|
2
|
-
scylla_cqlsh-6.0.
|
|
3
|
-
scylla_cqlsh-6.0.
|
|
4
|
-
scylla_cqlsh-6.0.
|
|
5
|
-
scylla_cqlsh-6.0.
|
|
6
|
-
scylla_cqlsh-6.0.
|
|
7
|
-
scylla_cqlsh-6.0.
|
|
1
|
+
copyutil.cpython-311-darwin.so,sha256=IsCv98MiqBMqm7drOILOanI07VlBtPJYIRKMy9tNDWw,1625808
|
|
2
|
+
scylla_cqlsh-6.0.21.dist-info/RECORD,,
|
|
3
|
+
scylla_cqlsh-6.0.21.dist-info/WHEEL,sha256=ODIUoelrE30qIP3QE2MgREcutdHO3GooqGCJk-TZIhg,110
|
|
4
|
+
scylla_cqlsh-6.0.21.dist-info/entry_points.txt,sha256=oE4unqgR3WwNkCJDGlMG1HYtCE3nEZZ4d9CIl-JSZyQ,46
|
|
5
|
+
scylla_cqlsh-6.0.21.dist-info/top_level.txt,sha256=PVG-5w7PDG3FoAJH6Rq2I8C0y4cKa2KOW75GxjHkmQ4,24
|
|
6
|
+
scylla_cqlsh-6.0.21.dist-info/LICENSE.txt,sha256=JAuKOf39K9OzU5wC40RmM0iE_ISwVrV_BunaNTI-zZc,11360
|
|
7
|
+
scylla_cqlsh-6.0.21.dist-info/METADATA,sha256=Nt65voJuRc4UHZ37DxsbH2z-jI8u7oF5Zbjkxb6jiR4,2814
|
|
8
8
|
cqlshlib/authproviderhandling.py,sha256=p4r_sk64AC5eiv__n-gjwQk2Ni_CcK6lyAWSKEcgINs,7078
|
|
9
9
|
cqlshlib/cqlshhandling.py,sha256=BUu9wi7H1Xgil9lci-48TCPQ1xwe2-OTNXsW7jiewlM,10510
|
|
10
10
|
cqlshlib/tracing.py,sha256=ct7siXwNMINjGVXn9qr5h7XhDDM6Bi1uLljPUtcve-A,3403
|
|
11
11
|
cqlshlib/sslhandling.py,sha256=TtEib4N-BuL2KZJiGYijc9DQviYp2lzYlwLj4RLp0oQ,4649
|
|
12
12
|
cqlshlib/saferscanner.py,sha256=T4eSYVWuZf4piTS9PgHjFhuY6g1fOb4VVa1Bu4Y1v_I,3539
|
|
13
|
-
cqlshlib/_version.py,sha256=
|
|
13
|
+
cqlshlib/_version.py,sha256=exx4HNoWhdHaPXam5wx1R5E3mFHRbwqrLVHGWJ4Ftgs,413
|
|
14
14
|
cqlshlib/wcwidth.py,sha256=PsbF7OaDlLItaiV6niu8F_OOgVYLJo0Ypb5-cOJV3QY,15865
|
|
15
15
|
cqlshlib/displaying.py,sha256=bsA7T4BwQHgtH4jzCJeU3JrpgMT5k0xZ7EA2AnhYG7g,3977
|
|
16
16
|
cqlshlib/util.py,sha256=qWQmq9v28vZwZ4apzK0-UQOYPIW3TMk-Jq9I69LbW0k,5057
|
|
@@ -21,6 +21,6 @@ cqlshlib/copyutil.py,sha256=mORX85C5CFqNSIoElATn4vKjUaCdUL8td5blyXlFDHI,113415
|
|
|
21
21
|
cqlshlib/helptopics.py,sha256=bBPtNHn2ySgO9K4nFBpJw2gcibryIdRh7dm3b9TUubQ,4524
|
|
22
22
|
cqlshlib/pylexotron.py,sha256=QY3nZ-fP-yGFIixMV33IgMlKV8A51AxnNYya0PGZc6I,19273
|
|
23
23
|
cqlshlib/cql3handling.py,sha256=cAE_UW8sg4UJ8PjS5rbbZn-O3_L9m2297Or-8f2s72Y,59123
|
|
24
|
-
cqlsh/cqlsh.py,sha256=
|
|
24
|
+
cqlsh/cqlsh.py,sha256=NCGYLjMk-Qnt7HLr0OJnNfnoH-HGKbHx7nBUrBL8SEA,111876
|
|
25
25
|
cqlsh/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
26
26
|
cqlsh/__main__.py,sha256=-IR7kYVwXf9uq9OBeVlAB5I386E1N9iEhrjn3sCw-74,220
|
|
File without changes
|
|
File without changes
|
|
File without changes
|