Skip to content

Commit cabbd87

Browse files
authored
fix: use tag instead of rev for hyperswitch dependency (#19)
1 parent 9a505a4 commit cabbd87

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

Cargo.lock

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ opentelemetry-prometheus = "0.16.0"
3535
prometheus = "0.13.4"
3636
serde = { version = "1.0.202", features = ["derive"] }
3737
serde_json = "1.0.117"
38-
masking = { git = "https://github.com/juspay/hyperswitch", rev = "ec451c0c81b6ebbd719a8706c019f418bd98e754" }
38+
masking = { git = "https://github.com/juspay/hyperswitch", tag = "v1.109.0" }
3939
async-trait = "0.1.80"
4040
hex = "0.4.3"
4141
ring = { version = "0.17.8", features = ["std"] }

scripts/tls/gen_certs.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ while [[ $# -gt 0 ]]; do
2424
done
2525

2626
if [ "$PROD" == "true" ]; then
27-
ALT=$(printf "DNS:%s.%s.svc.cluster.local" $NAMESPACE $SERVICE)
27+
ALT=$(printf "DNS:%s.%s.svc.cluster.local" $SERVICE $NAMESPACE)
2828
CA_SUBJECT="/C=US/ST=CA/O=Cripta CA/CN=Cripta CA"
29-
SUBJECT=$(printf "/C=US/ST=CA/O=Cripta/CN=%s.%s.svc.cluster.local" $NAMESPACE $SERVICE)
29+
SUBJECT=$(printf "/C=US/ST=CA/O=Cripta/CN=%s.%s.svc.cluster.local" $SERVICE $NAMESPACE)
3030
else
3131
ALT="DNS:localhost"
3232
CA_SUBJECT="/C=US/ST=CA/O=Cripta CA/CN=Cripta CA"

0 commit comments

Comments
 (0)