Update .gitignore, requirements, and enhance OPC UA error handling - Added new entries to .gitignore for openspec and cursor directories. - Updated sientia-dataops-library dependency version in requirements-light.txt from 1.10.4 to 1.12.0. - Enhanced OPC UA communication by refining reconnect logic and error handling in opc_repository.py, including the introduction of a reconnect flag and improved session management. - Updated tests to cover new reconnect scenarios and ensure robust error handling for protocol states.
58 lines
707 B
Plaintext
58 lines
707 B
Plaintext
# Ignorar volumes do Docker
|
|
docker-compose.override.yml
|
|
**/db_data/
|
|
**/kafka-volume/
|
|
**/zookeeper-volume/
|
|
**/mage_data/
|
|
**/minio_data/
|
|
**/venv/
|
|
**/certs/*.pem
|
|
**/certs/*.der
|
|
**/certs/*.csr
|
|
**/deploy/*.yaml
|
|
scouter/.file_versions/
|
|
scouter/pipelines/**/triggers.yaml
|
|
**/postgres_data/**
|
|
# Ignorar arquivos e diretórios de cache do Python
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
|
|
# Ignorar logs
|
|
*.log
|
|
|
|
# Ignorar arquivos de configuração locais
|
|
.vscode/
|
|
.pytest_cache/
|
|
.idea/
|
|
*.swp
|
|
|
|
# Ignorar arquivos temporários
|
|
*.tmp
|
|
*.bak
|
|
*.old
|
|
.secret
|
|
|
|
# Ignorar coverage
|
|
htmlcov/
|
|
.coverage
|
|
coverage.xml
|
|
|
|
# git keys
|
|
git_key*
|
|
|
|
git_log
|
|
|
|
.env
|
|
|
|
tmp/
|
|
catboost_info/
|
|
|
|
.ruff_cache/
|
|
.mypy_cache/
|
|
mlruns/
|
|
|
|
relatorio*
|
|
openspec/*
|
|
.cursor/* |