We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c42c614 commit 045e30cCopy full SHA for 045e30c
check-deployed-package/run.sh
@@ -6,7 +6,7 @@ LOGS_SEED=$(openssl rand -hex 2 | cut -c1-5)
6
echo "Generated seed: $LOGS_SEED"
7
8
# Generate random metrics seed (1-1,000,000)
9
-METRICS_SEED=$((1 + $RANDOM % 1000000))
+METRICS_SEED=$(awk 'BEGIN{srand(); print int(rand()*1000000)+1}')
10
echo "Generated metrics seed: $METRICS_SEED"
11
12
echo "Building LogDash demo Docker image (using published package)..."
logdash/__init__.py
@@ -3,4 +3,4 @@
3
from logdash.metrics import MetricOperation
4
5
__all__ = ["create_logdash", "Logger", "MetricOperation"]
-__version__ = "1.0.5"
+__version__ = "1.0.6"
0 commit comments