This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { ApolloLink, FetchResult, NextLink, Observable, Observer, Operation } from '@apollo/client' | |
import { Subscription } from 'zen-observable-ts' | |
class PusherObservable extends Observable<FetchResult> { | |
subscribeInternal: any | |
subscribe(observer: Observer<FetchResult>): Subscription | |
subscribe(onNext: (value: FetchResult) => void, onError?: (error: any) => void, onComplete?: () => void): Subscription | |
subscribe(observer: any) { | |
super.subscribe(observer) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
==> /greengrass/ggc/var/log/user/ap-northeast-1/aws/GPIOConnector.log <== | |
# Greengrass Group デプロイでコネクタ停止 | |
[2020-01-20T13:39:52.205Z][INFO]-lambda_runtime.py:364,Caught signal 15. Stopping runtime. | |
# デプロイ完了で再起動 | |
[2020-01-20T13:40:46.958Z][INFO]-lambda_runtime.py:147,Running [arn:aws:lambda:ap-northeast-1:aws:function:GPIOConnector:1] | |
[2020-01-20T13:40:46.96Z][INFO]-ipc_client.py:192,Getting work for function [arn:aws:lambda:ap-northeast-1:aws:function:GPIOConnector:1] from http://localhost:8000/2016-11-01/functions/arn:aws:lambda:ap-northeast-1:aws:function:GPIOConnector:1/work |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 先の security.php を classes に配置したうえでBootstrapで上書き指定する | |
Autoloader::add_classes(array( | |
// Add classes you want to override here | |
// Example: 'View' => APPPATH.'classes/view.php', | |
'Security' => APPPATH.'classes/security.php', | |
) | |
); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# AWS::EC2::SecurityGroup タイプの埋め込みプロパティでCloudFormationに設定するためのスニペット。 | |
# Ref: https://confluence.atlassian.com/bitbucket/what-are-the-bitbucket-cloud-ip-addresses-i-should-use-to-configure-my-corporate-firewall-343343385.html | |
# Ref: https://docs.aws.amazon.com/ja_jp/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-rule.html | |
SecurityGroupIngress: | |
- IpProtocol: tcp | |
FromPort: '22' | |
ToPort: '22' | |
CidrIp: 34.236.25.177/32 | |
Description: Bitbucket Pipelines build environments | |
- IpProtocol: tcp |