Browse Source

Ensure FSM also does not use UUIDs

pull/394/head
Armon Dadgar 10 years ago
parent
commit
93f17736fd
  1. 7
      scripts/verify_no_uuid.sh

7
scripts/verify_no_uuid.sh

@ -1,8 +1,13 @@
#!/bin/bash
set -e
grep generateUUID consul/state_store.go
RESULT=$?
if [ $RESULT -eq 0 ]; then
exit 1
fi
grep generateUUID consul/fsm.go
RESULT=$?
if [ $RESULT -eq 0 ]; then
exit 1
fi

Loading…
Cancel
Save