Skip to content

Commit

Permalink
consistent protoc version
Browse files Browse the repository at this point in the history
  • Loading branch information
Peeeekay committed Jun 13, 2023
1 parent ce33387 commit 711b09b
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 5 deletions.
1 change: 0 additions & 1 deletion 2d

This file was deleted.

Expand Up @@ -7,7 +7,7 @@
// Code generated by protoc-gen-grpc-web. DO NOT EDIT.
// versions:
// protoc-gen-grpc-web v1.4.2
// protoc v3.15.6
// protoc v3.19.1
// source: api_container_service.proto


Expand Down
Expand Up @@ -13,7 +13,13 @@

var jspb = require('google-protobuf');
var goog = jspb;
var global = Function('return this')();
var global = (function() {
if (this) { return this; }
if (typeof window !== 'undefined') { return window; }
if (typeof global !== 'undefined') { return global; }
if (typeof self !== 'undefined') { return self; }
return Function('return this')();
}.call(null));

var google_protobuf_empty_pb = require('google-protobuf/google/protobuf/empty_pb.js');
goog.object.extend(proto, google_protobuf_empty_pb);
Expand Down
Expand Up @@ -7,7 +7,7 @@
// Code generated by protoc-gen-grpc-web. DO NOT EDIT.
// versions:
// protoc-gen-grpc-web v1.4.2
// protoc v3.15.6
// protoc v3.19.1
// source: engine_service.proto


Expand Down
Expand Up @@ -13,7 +13,13 @@

var jspb = require('google-protobuf');
var goog = jspb;
var global = Function('return this')();
var global = (function() {
if (this) { return this; }
if (typeof window !== 'undefined') { return window; }
if (typeof global !== 'undefined') { return global; }
if (typeof self !== 'undefined') { return self; }
return Function('return this')();
}.call(null));

var google_protobuf_empty_pb = require('google-protobuf/google/protobuf/empty_pb.js');
goog.object.extend(proto, google_protobuf_empty_pb);
Expand Down
Expand Up @@ -30,8 +30,10 @@ def run(plan):
config = ServiceConfig(
image = CONTAINER_IMAGE,
max_cpu=500,
min_cpu=100,
memory_allocation=256,
max_memory=1024,
min_memory=512,
ports = {
"grpc": PortSpec(number = GRPC_PORT, transport_protocol = "TCP")
}
Expand Down

0 comments on commit 711b09b

Please sign in to comment.