Lance Finfrock

Results 11 comments of Lance Finfrock

This is also a problem for anyone using Angular 6 with this library. Below is the line that I am seeing that fails in Angular 6. https://github.com/jinder/path/blob/master/path.js#L25 Below is a...

I have the same problem with a Nexus One android 2.3. The program worked when I first used it about a year ago. I will let the program sit with...

Elasticsearch breaking changes https://www.elastic.co/guide/en/elasticsearch/reference/7.0/release-notes-7.0.0.html#breaking-7.0.0

Time formats with timezones need updated https://www.elastic.co/guide/en/elasticsearch/reference/current/migrate-to-java-time.html#java-time-migration-incompatible-date-formats. "yyyy-MM-dd'T'HH:mm:ssZ" need to be changed to "yyyy-MM-dd'T'HH:mm:ssX" for times like "2017-09-01-07:58:06Z". But for time like "2010-01-01T01:02:03-07:00" we need to add more X like...

All "elastic.NewTypeQuery(mappings.DocType)" filters can be removed because there is not a doctype anymore for documents. So All documents in indexes have the same doctype. All elastic.NewIdsQuery(mappings.DocType) can remove the doctype...

compliance-service reporting test ``` 1) Failure: 07_suggestions_spec.rb#test_0001_works [/Users/lancewf/workspace/automate/components/compliance-service/api/tests/07_suggestions_spec.rb:141]: --- expected +++ actual @@ -1 +1,3 @@ -[] +["Apache should be enabled--apache-02--", + "Apache should be running--apache-01--", + "Apache should start...

After adding 100 compliance nodes with "chef_load_compliance_nodes 100" the automate-elasticsearch's status is "unknown" When running `curl "$ELASTICSEARCH_URL/_cat/indices?pretty"` I get the below error message. ``` { "error" : { "root_cause" :...

Because the default number of shards has changed from 5 in es6 to 1 in es7 each time an index or template is created we need to set the number...

For the automate-cs-oc-erchef component, the "_all" is not a valid field in ES 7. https://github.com/chef/automate/blob/master/components/automate-cs-oc-erchef/habitat/config/elasticsearch-index-init.json#L18 https://www.elastic.co/guide/en/elasticsearch/reference/6.8/mapping-all-field.html

With the Elasticsearch 7 upgrade, we have found a problem with the ListSuggestion RPC in the compliance-service only when requesting type “controls”. We are seeing that the controls returned are...