hmsonline / cassandra-triggers

52 stars 13 forks source link

LogEntryStore can generate invalid column family name #40

Closed andrewswan closed 12 years ago

andrewswan commented 12 years ago

The LogEntryStore constructor appends the result of LogEntryStore#getHostName to the column family name passed to the superclass. However it's possible for that host name to contain characters that are invalid within a Cassandra column family name, for example a dash "-". The only valid characters in CF names are letters, numbers, and underscores.

andrewswan commented 12 years ago

I've logged a pull request as issue 41; sorry for the noise.

andrewswan commented 12 years ago

Fixed now that my pull request has been pulled (see issue 41).