We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b93c802 commit c42c614Copy full SHA for c42c614
2 files changed
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=$(jot -r 1 1 1000000)
+METRICS_SEED=$((1 + $RANDOM % 1000000))
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.4"
+__version__ = "1.0.5"
0 commit comments