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

System test fixes #1565

Open
wants to merge 30 commits into
base: 7.0.2-build
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
380b0be
Adding deleting unknown resources feature.
bartoszkosciug Feb 22, 2023
4a8a890
remove ips from unknown deletion.
bartoszkosciug Feb 22, 2023
888d25c
Bump version
limor-gs Mar 8, 2023
57244b6
Merge branch 'master' into RD-7043
bartoszkosciug Mar 17, 2023
e5d9517
Merge pull request #1531 from cloudify-cosmo/RD-7043
bartoszkosciug Mar 17, 2023
2f54b93
RND-293 agent upgrade test: only assert on the STARTED agent (#1535)
tehasdf Apr 4, 2023
aac92e3
RD-7139 Add upgrade agents to cluster inplace upgrade tests (#1537)
glukhman Apr 4, 2023
405c539
Fix summary error message check after RND-390 (#1541)
glukhman Apr 17, 2023
20b86af
Give AMQP service more time to stop/start (#1542)
glukhman Apr 19, 2023
205f98b
gnore agent dir + add agent uninstall assert (#1544)
glukhman Apr 19, 2023
53168b8
Do not pass external_cert/key/ca (#1547)
tehasdf May 15, 2023
735e305
Update default manager-under-test to 7.1.0 (#1548)
tehasdf May 16, 2023
e60703c
Upgrade blueprints to DSL version 1.5 (#1549)
mateumann Jun 16, 2023
7dc73d7
RND-895 Proxy 443 port along 53333 in test_agent_via_proxy (#1550)
mateumann Jun 19, 2023
6e960b4
RND-895 Don't proxy 53333 - it's no longer necessary (#1551)
mateumann Jun 20, 2023
546fc1d
Rd 6678 test upgrade ext db (#1521)
glukhman Jun 22, 2023
88a62aa
RD-6678 Add documentation on external DB variables (#1552)
glukhman Jun 22, 2023
2a3d7e1
Cluster manager tests: public IPs -> FQDNs (#1553)
glukhman Jun 27, 2023
a3ebb12
RND-901 Download new rest cert: re-establish the http session (#1554)
tehasdf Jun 29, 2023
177b2fe
RND-959 Preserve ownership/permissions when copying (#1555)
mateumann Jul 3, 2023
184dce0
RND-969 Update default AMI for ubuntu_16_04_image (#1556)
mateumann Jul 5, 2023
74513d6
RND-974 Close HTTP session only if client initialized (#1557)
mateumann Jul 5, 2023
5e857f4
RND-946 Fix framework bugs to allow testing on RHEL-8 (#1558)
glukhman Jul 5, 2023
420d476
Make all certs readable for slapd (#1559)
mateumann Jul 6, 2023
db0b1b9
RND-948 Make /cfy_backup/ readable to all (#1560)
mateumann Jul 7, 2023
22ed3f4
RND-984 Use FQDN instead of public IP (#1561)
glukhman Jul 11, 2023
7c87bdd
RND-984 workaround old test plugin file deletion (#1562)
glukhman Jul 11, 2023
770afce
Add a flag for using FQDN instead of public ip (#1563)
glukhman Jul 26, 2023
88782b2
Fix-nine-nodes-fqdns-typo
Aug 15, 2023
a0476a3
Update cluster-manager to newest version
Aug 15, 2023
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
Prev Previous commit
Next Next commit
RND-974 Close HTTP session only if client initialized (#1557)
  • Loading branch information
mateumann authored Jul 5, 2023
commit 74513d6464ec689f1b2faaea628ded801357fed4
3 changes: 2 additions & 1 deletion cosmo_tester/framework/test_hosts.py
Original file line number Diff line number Diff line change
@@ -856,7 +856,8 @@ def download_rest_ca(self, force=False):
)
# close the current restclient session to force making a new connection
# using the new certificate, on first use after this call
self.client._client._session.close()
if self.client:
self.client._client._session.close()

@only_manager
def clean_local_rest_ca(self):