Ensure FSM also does not use UUIDs

This commit is contained in:
Armon Dadgar 2014-10-09 11:33:25 -07:00
parent 1deccbe074
commit 8f85c977bf
1 changed files with 7 additions and 2 deletions

View File

@ -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