Skip to content

Commit 045e30c

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

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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=$((1 + $RANDOM % 1000000))
9+
METRICS_SEED=$(awk 'BEGIN{srand(); print int(rand()*1000000)+1}')
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.5"
6+
__version__ = "1.0.6"

0 commit comments

Comments
 (0)