Aron Novak

Results 59 comments of Aron Novak

For the record it also doesn't work with full URLs, so: ``` LIVE_DB_BACKUP=$(terminus backup:get "$PANTHEON_SITE".live --element=files) terminus backup:restore "$PANTHEON_SITE"."$PANTHEON_ENV" --element=files --file="$LIVE_FILES_BACKUP" -y ``` fails too with the same error.

@a-sukhodolsky Perfect, thanks a lot, I can confirm that it works like a charm. My variant in the end: ```bash TARGET="$PANTHEON_SITE"."$PANTHEON_ENV" SOURCE="$PANTHEON_SITE".live terminus import:files $TARGET "$(terminus backup:get $SOURCE --element=files)" --yes...

@jfussion https://github.com/pantheon-systems/terminus/issues/2081 a new command would solve your issue as well, I think a specific command could be used to wait for an environment to complete all the code-related workflow...

@greg-1-anderson Thanks, I'll give it a try and let you know!

We do have the same symptom. There's a complex flow in the Drupal application, without Rollbar, it works, with Rollbar, the memory limit is exceeded. Likely a notice or a...

@phenaproxima As the originally linked issue is 404, could you help us if this is fixed in recent Lightning versions or not already? Thanks!

![image](https://user-images.githubusercontent.com/114076/41410859-16df7b4a-6fdb-11e8-8e6b-b5c54413967e.png) Based on this, at least version 3.104 has a proper fix for this problem.

I have exactly the same problem with this snippet: ```php $search = $client->api('search'); $paginator = new Github\ResultPager($client); $commits = $paginator->fetchAll($search, 'commits', ['author:' . $username]); ``` What results in: ``` PHP...

For a very quick workaround, you may use this: ```php $builder = new Builder(); $builder->addHeaderValue('Accept', sprintf('application/vnd.github.cloak-preview+json')); $client = new Client($builder); $search = $client->api('search'); $paginator = new Github\ResultPager($client); $commits = $paginator->fetchAll($search,...