Skip to content

Commit c42c614

Browse files
committed
fix: adjust auto check script
1 parent b93c802 commit c42c614

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

check-deployed-package/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ LOGS_SEED=$(openssl rand -hex 2 | cut -c1-5)
66
echo "Generated seed: $LOGS_SEED"
77

88
# Generate random metrics seed (1-1,000,000)
9-
METRICS_SEED=$(jot -r 1 1 1000000)
9+
METRICS_SEED=$((1 + $RANDOM % 1000000))
1010
echo "Generated metrics seed: $METRICS_SEED"
1111

1212
echo "Building LogDash demo Docker image (using published package)..."

logdash/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
from logdash.metrics import MetricOperation
44

55
__all__ = ["create_logdash", "Logger", "MetricOperation"]
6-
__version__ = "1.0.4"
6+
__version__ = "1.0.5"

0 commit comments

Comments
 (0)