-
Hi, When running the composer update command I get the following error. Also on every other command I try to run I hit the exact same error message.
"Class 'IronCore' not found"
any thoughts on this…
-
We recently had a production issue where the `loadConfigFile` method in IronCore checks `file_exists` on the given config file. At the top of this method you should probably check:
```
if ( ! ini_get…
-
Im on Beta 4 and receive the following error.
[2013-04-01 17:57:11] log.ERROR: exception 'Symfony\Component\HttpKernel\Exception\FatalErrorException' with message 'Error: Class 'Illuminate\Queue\Conn…
-
When using the ironmq (specifically on iron.io) the attempted delete call it continually comes back with "Message not found" into the log files. This causes whatever the queued task was to continuall…
-
I have an initializer set up like so:
``` ruby
if Rails.env.development?
ENV['IRON_WORKER_TOKEN'] = 'xxx'
ENV['IRON_WORKER_PROJECT_ID'] = 'yyy'
end
IronCore::Logger.logger.level = ::Logger::DEBUG…
-
Hi, I'm not sure is it the actual code issue or api but as of today every call using postTask() is returning :
Fatal error: Uncaught exception 'Http_Exception' with message 'http error: 0 | Empty re…
-
I'm guessing there is some new string length check on the project_id?
However, this fails in development environment if you are using some dummy value for that string like is shown here: https://devc…
-
Add support in the gem for peek, touch, and release.
http://dev.iron.io/mq/reference/api/#peek_messages_on_a_queue
http://dev.iron.io/mq/reference/api/#touch_a_message_on_a_queue
http://dev.iron.io/m…
-
- Create new queue and call it for its size:
``` ruby
queue = ironmq.queue "my_new_queue" # => #
queue.size
Rest::HttpError: HTTP 404 Error. {"msg":"Queue not found"}
from ...
..
```
- For new …
-
```
def put(method, params={})
request_hash = {}
request_hash[:headers] = common_request_hash
request_hash[:body] = params.to_json
IronCore::Logger.debug 'IronCore', "PU…