Skip to content
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 .github/workflows/docker-configs/ldap-docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '2'

services:
openldap:
image: docker.io/bitnami/openldap:2.6
image: docker.io/bitnami/openldap:latest
ports:
- '1389:1389'
- '1636:1636'
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/docs_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- uses: shogo82148/actions-setup-redis@v1
with:
redis-version: "7.x"
- name: Install dependencies
run: |
sudo apt install redis
Expand Down
13 changes: 11 additions & 2 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
# pydantic-version: ["<2.0.0", ">=2.0.0"]
# exclude:
# - python-version: "3.9"
Expand All @@ -29,9 +29,18 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- uses: shogo82148/actions-setup-redis@v1
with:
redis-version: "7.x"
- name: Install dependencies
run: |
sudo apt install redis
# sudo apt install redis

pushd ..
git clone https://github.com/bitnami/containers.git
cd containers/bitnami/openldap/2.6/debian-12
docker build -t bitnami/openldap:latest .
popd

# Start LDAP
source start_LDAP.sh
Expand Down
2 changes: 1 addition & 1 deletion docs/source/control_re_manager.rst
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ The following WebSockets are currently implemented:
For example, the console output stream may be received by connecting to the socket with
``ws://localhost:60610/api/console_output/ws`` URI.

Currently ``/info/ws`` and ``/status/ws`` sockets are streaming the same sequence of RE Manager
Currently ``/info/ws`` and ``/status/ws`` sockets are streaming the same sequence of RE Manager
status messages. Additional messages may be added to the system info stream in the future.

Message format for console output messages::
Expand Down
2 changes: 1 addition & 1 deletion start_LDAP.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
set -e

# Start LDAP server in docker container
sudo docker pull bitnami/openldap:latest
# sudo docker pull osixia/openldap:latest
sudo docker compose -f .github/workflows/docker-configs/ldap-docker-compose.yml up -d
sudo docker ps
Loading