Custom Query (894 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (43 - 45 of 894)

Ticket Owner Reporter Resolution Summary
#1116 desai https://www.google.com/accounts/o8/id?id=AItOawm7-QeHxXGyyMwjN6_wFPC-gGTvrxu0YaE fixed cheetah plugin don't work with unicode
Description

cheetah exception: 'ascii' codec can't decode byte 0xd1 in position 3505: ordinal not in range(128)

#1115 desai https://www.google.com/accounts/o8/id?id=AItOawkfar6gGD3PuUixQdEZQyRr2mpowLW1A70 fixed ProbeData object doesn't behave like a str() anymore
Description

In testing my migration to 1.2.x I've noticed I can no longer treat probe data as a string:

len(metadata.Probes.get('system-memory'))

Traceback (most recent call last):

File "<console>", line 1, in <module>

TypeError?: object of type 'ProbeData?' has no len()

or

'104' in metadata.Probes.get('system-memory')

Traceback (most recent call last):

File "<console>", line 1, in <module>

TypeError?: argument of type 'ProbeData?' is not iterable

There is a string at .data but due to the way I test that an object is populated with .get('probe_name', 'default'), this makes it hard to get at the data.

Can the ProbeData? please inherit the properties of a str() object?

#1113 laszlo https://www.google.com/accounts/o8/id?id=AItOawmPND9hLM-9OK1G8nL1xVVEEDXIbudo2IE fixed DBStats MySQL Indexes
Description

Had an awful time with MySQL performance with DBStats, turns out a couple indexes make it much more usable. Would suggest including these with the code to create the table.

create index idx_report_reason_version on reports_reason (version(100)); create index idx_report_reason_current_diff on reports_reason (current_diff(10000));

Note: See TracQuery for help on using queries.