mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #63924 from MKLeb/hotfix/3006.x/sys-meta-path-not-available
Fix sys.meta_path is None
This commit is contained in:
commit
9889d1211d
2 changed files with 56 additions and 0 deletions
55
pkg/tests/integration/test_clean_zmq_teardown.py
Normal file
55
pkg/tests/integration/test_clean_zmq_teardown.py
Normal file
|
@ -0,0 +1,55 @@
|
|||
import logging
|
||||
import pathlib
|
||||
import shutil
|
||||
import textwrap
|
||||
|
||||
import pytest
|
||||
|
||||
pytestmark = [
|
||||
pytest.mark.skip_on_windows,
|
||||
]
|
||||
|
||||
log = logging.getLogger(__name__)
|
||||
|
||||
|
||||
def test_check_no_import_error(salt_call_cli, salt_master):
|
||||
"""
|
||||
Test that we don't have any errors on teardown of python when using a py-rendered sls file
|
||||
This is a package test because the issue was not reproducible in our normal test suite
|
||||
"""
|
||||
init_sls = textwrap.dedent(
|
||||
"""#!py
|
||||
|
||||
|
||||
def run():
|
||||
return {
|
||||
"file_foobar": {
|
||||
"file.managed": [
|
||||
{
|
||||
"name": "/foobar"
|
||||
},
|
||||
{
|
||||
"template": "jinja"
|
||||
},
|
||||
{
|
||||
"context": {
|
||||
"foobar": "baz",
|
||||
}
|
||||
},
|
||||
{
|
||||
"source": "salt://breaks/foobar.jinja",
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
"""
|
||||
)
|
||||
base_tree = pathlib.Path(salt_master.config["file_roots"]["base"][0])
|
||||
breaks_tree = base_tree / "breaks"
|
||||
breaks_tree.mkdir(exist_ok=True)
|
||||
(breaks_tree / "init.sls").write_text(init_sls)
|
||||
(breaks_tree / "foobar.jinja").write_text("{{ foobar }}")
|
||||
output = salt_call_cli.run("state.apply", "breaks", "--output-diff", "test=true")
|
||||
log.debug(output.stderr)
|
||||
shutil.rmtree(str(breaks_tree), ignore_errors=True)
|
||||
assert not output.stderr
|
|
@ -539,6 +539,7 @@ class AsyncReqMessageClient:
|
|||
self.socket = None
|
||||
self.stream = None
|
||||
if self.context.closed is False:
|
||||
# This hangs if closing the stream causes an import error
|
||||
self.context.term()
|
||||
|
||||
def _init_socket(self):
|
||||
|
|
Loading…
Add table
Reference in a new issue